Skip to content

Commit

Permalink
bump version v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Feb 3, 2022
1 parent 8c54097 commit c5ed252
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
release_name: ${{ github.ref }}
draft: false
prerelease: false
deploy_binaries:
needs: create_release
deploy_github:
runs-on: ${{ matrix.os }}
needs: create_release
strategy:
fail-fast: false
matrix:
Expand All @@ -40,7 +40,9 @@ jobs:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
toolchain: stable
override: true
- name: Check project
uses: actions-rs/cargo@v1
with:
Expand All @@ -65,19 +67,19 @@ jobs:
asset_path: himalaya.tar.gz
asset_name: himalaya-${{ matrix.os_name }}.tar.gz
asset_content_type: application/gzip
deploy_crate:
deploy_crates:
runs-on: ubuntu-latest
needs: create_release
runs-on: linux
environment: deployment
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check project
uses: actions-rs/cargo@v1
profile: minimal
toolchain: stable
override: true
- uses: katyo/publish-crates@v1
with:
command: check
- name: Publish package to crates.io
run: cargo publish
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.3] - 2022-02-03

### Added

- Activate rust-imap logs when trace mode is enabled
- Set up cargo deployment

## [0.5.2] - 2022-02-02

### Fixed
Expand Down Expand Up @@ -266,7 +273,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Password from command [#22]
- Set up README [#20]

[unreleased]: https://github.com/soywod/himalaya/compare/v0.5.2...HEAD
[unreleased]: https://github.com/soywod/himalaya/compare/v0.5.3...HEAD
[0.5.3]: https://github.com/soywod/himalaya/compare/v0.5.2...v0.5.3
[0.5.2]: https://github.com/soywod/himalaya/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/soywod/himalaya/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/soywod/himalaya/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "himalaya"
description = "Command-line interface for email management"
version = "0.5.2"
version = "0.5.3"
authors = ["soywod <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
Expand Down

0 comments on commit c5ed252

Please sign in to comment.