mirror of
https://github.com/supleed2/omg-rs.git
synced 2024-11-09 18:45:48 +00:00
Create v0.2.1 release
Check out submodules, otherwise omg-api is missing
This commit is contained in:
parent
275ca23c12
commit
3796f19fbf
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -13,6 +13,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
- uses: taiki-e/create-gh-release-action@v1
|
- uses: taiki-e/create-gh-release-action@v1
|
||||||
with:
|
with:
|
||||||
# Path to changelog.
|
# Path to changelog.
|
||||||
|
|
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
## [0.2.1] - 2023-08-30
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- Changelog file (this file) and reference in the [readme](README.md)
|
- Changelog file (this file) and reference in the [readme](README.md)
|
||||||
- Automated release with pre-built binaries using GitHub Actions: [release.yaml](.github/workflows/release.yaml)
|
- Automated release with pre-built binaries using GitHub Actions: [release.yaml](.github/workflows/release.yaml)
|
||||||
- Prami logo, taken from [here](https://sarajoy.dev/blog/short/2023-01-18-ascii-art-heart/) with permission
|
- Prami logo, taken from [here](https://sarajoy.dev/blog/short/2023-01-18-ascii-art-heart/) with permission
|
||||||
|
@ -22,14 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Update [omg-api](https://github.com/supleed2/omg-api) to v0.2.0
|
- Update [omg-api](https://github.com/supleed2/omg-api) to v0.2.0
|
||||||
- Update config format and handling in `main.rs`
|
- Update config format and handling in `main.rs`
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## [0.2.0] - 2023-04-14
|
## [0.2.0] - 2023-04-14
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -52,5 +58,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Basic hello world project structure, testing crates.io
|
- Basic hello world project structure, testing crates.io
|
||||||
|
|
||||||
[unreleased]: https://github.com/supleed2/omg-rs/compare/v0.2.0...HEAD
|
[unreleased]: https://github.com/supleed2/omg-rs/compare/v0.2.1...HEAD
|
||||||
|
[0.2.1]: https://github.com/supleed2/omg-rs/releases/tag/v0.2.1
|
||||||
[0.2.0]: https://github.com/supleed2/omg-rs/releases/tag/v0.2.0
|
[0.2.0]: https://github.com/supleed2/omg-rs/releases/tag/v0.2.0
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -641,7 +641,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "omg"
|
name = "omg"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "omg"
|
name = "omg"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "CLI app for interacting with the omg.lol API"
|
description = "CLI app for interacting with the omg.lol API"
|
||||||
homepage = "https://github.com/supleed2/omg-rs"
|
homepage = "https://github.com/supleed2/omg-rs"
|
||||||
|
|
Loading…
Reference in a new issue