Skip to content

Commit

Permalink
final prep for 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
karnthis committed Nov 17, 2021
1 parent 18df69e commit 7bcdf70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,7 +34,8 @@ None Yet

<!-- LINKS -->
<!-- RELEASES -->
[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
Expand Down
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion src/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 7bcdf70

Please sign in to comment.