From 7bcdf70d37316f09ac53aec272f8bdfe98bb8d6a Mon Sep 17 00:00:00 2001 From: Erin Rivas Date: Tue, 16 Nov 2021 22:35:06 -0600 Subject: [PATCH] final prep for 1.0.0 --- changelog.md | 6 +++++- readme.md | 4 +++- src/defaults.ts | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 60be784..8da2fbe 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Major Releases: +### [v1.0.0] | 2021 11 16 +#### Notes Coming Soon + ### [v0.3.0] | 2020 3 11 #### Added - Support for additional Request query parameters @@ -31,7 +34,8 @@ None Yet -[Unreleased]: https://github.com/karnthis/make-random/compare/v0.3.0...dev +[Unreleased]: https://github.com/karnthis/make-random/compare/v1.0.0...dev +[v1.0.0]: https://github.com/karnthis/make-random/compare/v0.3.0...v1.0.0 [v0.3.0]: https://github.com/karnthis/make-random/compare/v0.2.0...v0.3.0 [v0.2.0]: https://github.com/karnthis/make-random/compare/v0.1.0...v0.2.0 [v0.1.0]: https://github.com/karnthis/make-random/tag/v0.1.0 diff --git a/readme.md b/readme.md index 0c8a5c8..c1045fd 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# ESIIL | ESI Interface Library | **BETA 0.3.x** +# ESIIL | ESI Interface Library | v1.0.0 ## About ESIIL ESIIL was created to simplify use of the EVE Swagger Interface API, and offers access to both Public and Authenticated routes. It is currently a work in progress, and not all routes are implemented. @@ -10,6 +10,8 @@ If you find an ESI route you want to use and is not available yet, please [open ```shell npm install esiil ``` +## DISREGARD EVERYTHING BELOW THIS POINT. UPDATED GUIDE COMING SOON + ### Example Express API ```javascript const Express = require('express') diff --git a/src/defaults.ts b/src/defaults.ts index 5b91e0b..91188c5 100644 --- a/src/defaults.ts +++ b/src/defaults.ts @@ -2,7 +2,7 @@ import * as dotenv from 'dotenv' if (dotenv) dotenv.config() export default class CoreDefaults { - static userAgent: string = process.env.UserAgent || 'ESIIL-Default/0.x.x' + static userAgent: string = process.env.UserAgent || 'ESIIL-Default/1.0.x' static baseURL: string = 'https://esi.evetech.net/' static version: string = 'latest/' static source: string = 'tranquility'