This repository has been archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/v0.3.2' into main
- Loading branch information
Showing
3 changed files
with
49 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,74 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
The format is based on [Keep a Changelog][keep a changelog] and this project adheres to [Semantic Versioning][semantic versioning]. | ||
|
||
## [Unreleased] | ||
|
||
## [0.3.1] - 2021-03-22 | ||
- / | ||
|
||
--- | ||
|
||
## [Released] | ||
|
||
## [0.3.2] - 2021-03-22 | ||
|
||
### Added | ||
- modinfo for mod database | ||
|
||
### Fixed | ||
- semver checks | ||
|
||
|
||
## [0.3.1] - 2021-03-22 | ||
|
||
### Added | ||
- Log python version | ||
|
||
### Fixed | ||
|
||
- Installed ujson for Win32 Python 3.7 | ||
|
||
|
||
## [0.3.0] - 2021-03-22 | ||
|
||
### Added | ||
|
||
- Export `socket`, `ssl`, `requests`, `semver` and `ujson` | ||
|
||
### Changed | ||
|
||
- Rename to `EridiumLib` | ||
- `log` now takes multiple argument to be closer to `unrealsdk.Log` | ||
|
||
|
||
## [0.2.0] - 2021-03-20 | ||
|
||
### Added | ||
|
||
- `dist` with `_socket`, `_ssl` and other files needed to make `requests` work | ||
- `getLatestVersion` and `isLatestRelease` functions | ||
- Automatic releases and linting with Github Actions | ||
- Licenses for *OpenSSL* and *Python 3.7* | ||
|
||
### Changed | ||
|
||
- Moved `isClient` to `Eridium` | ||
- Mod name to `EridiumLib` | ||
|
||
### Removed | ||
|
||
- Wrapped classes, they do not align with the goal of this library | ||
|
||
|
||
## [0.1.0] - 2021-03-19 | ||
- Initial Release | ||
|
||
|
||
Initial Release | ||
<!-- Links --> | ||
[keep a changelog]: https://keepachangelog.com/ | ||
[semantic versioning]: https://semver.org/ | ||
|
||
[Unreleased]: https://github.com/RLNT/bl2_eridium/compare/v0.3.1...HEAD | ||
<!-- Versions --> | ||
[unreleased]: https://github.com/RLNT/bl2_eridium/compare/v1.0.0...HEAD | ||
[released]: https://github.com/RLNT/bl2_eridium/releases | ||
[0.3.2]: https://github.com/RLNT/bl2_eridium/compare/v0.3.1...v0.3.2 | ||
[0.3.1]: https://github.com/RLNT/bl2_eridium/compare/v0.3.0...v0.3.1 | ||
[0.3.0]: https://github.com/RLNT/bl2_eridium/compare/v0.2.0...v0.3.0 | ||
[0.2.0]: https://github.com/RLNT/bl2_eridium/compare/v0.1.0...v0.2.0 | ||
[0.1.0]: https://github.com/RLNT/bl2_eridium/releases/tag/v0.1.0 | ||
[0.1.0]: https://github.com/RLNT/bl2_eridium/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"mods": [ | ||
{ | ||
"name": "EridiumLib", | ||
"authors": "Chronophylos, Relentless", | ||
"description": "Holds utility functions for some mods.", | ||
"types": ["Library"], | ||
"supports": ["BL2", "TPS"], | ||
"issues": "https://github.com/RLNT/bl2_eridium/issues", | ||
"source": "https://github.com/RLNT/bl2_eridium", | ||
"latest": "0.3.2", | ||
"versions": { | ||
"0.3.2": "https://github.com/RLNT/bl2_eridium/releases/tag/v0.3.2" | ||
}, | ||
"license": "https://github.com/RLNT/bl2_eridium/blob/main/LICENSE" | ||
} | ||
] | ||
} |