Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/v0.3.2' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rlnt committed Mar 22, 2021
2 parents f0aa250 + 6c1330e commit 37f82ae
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 13 deletions.
42 changes: 30 additions & 12 deletions CHANGELOG.md
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
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"socket",
"ssl",
]
__version__ = "0.3.1"
__version__ = "0.3.2"


def log(mod: SDKMod, *args: Any) -> None:
Expand Down
18 changes: 18 additions & 0 deletions modinfo.json
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"
}
]
}

0 comments on commit 37f82ae

Please sign in to comment.