From 3796f19fbffdbc1fb98b477d552578233a9d9237 Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Wed, 30 Aug 2023 14:57:09 +0100 Subject: [PATCH] Create v0.2.1 release Check out submodules, otherwise omg-api is missing --- .github/workflows/release.yaml | 2 ++ CHANGELOG.md | 25 ++++++++++++++++--------- Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 20 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bd9a8e1..3206217 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,6 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + submodules: recursive - uses: taiki-e/create-gh-release-action@v1 with: # Path to changelog. diff --git a/CHANGELOG.md b/CHANGELOG.md index 634a31a..0e6353b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [0.2.1] - 2023-08-30 + +### Added + - 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) - 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 config format and handling in `main.rs` -### Deprecated - -### Removed - -### Fixed - -### Security - ## [0.2.0] - 2023-04-14 ### 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 -[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 diff --git a/Cargo.lock b/Cargo.lock index 5e28eba..89f39c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -641,7 +641,7 @@ dependencies = [ [[package]] name = "omg" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 7ab549b..6a15c66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "omg" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "CLI app for interacting with the omg.lol API" homepage = "https://github.com/supleed2/omg-rs"