mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-24 20:10:23 +00:00
bump version v0.5.3
This commit is contained in:
parent
8c54097286
commit
c5ed252f33
4 changed files with 24 additions and 14 deletions
24
.github/workflows/deployment.yaml
vendored
24
.github/workflows/deployment.yaml
vendored
|
@ -21,9 +21,9 @@ jobs:
|
||||||
release_name: ${{ github.ref }}
|
release_name: ${{ github.ref }}
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
deploy_binaries:
|
deploy_github:
|
||||||
needs: create_release
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
needs: create_release
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -40,7 +40,9 @@ jobs:
|
||||||
- name: Install rust
|
- name: Install rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
- name: Check project
|
- name: Check project
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
@ -65,19 +67,19 @@ jobs:
|
||||||
asset_path: himalaya.tar.gz
|
asset_path: himalaya.tar.gz
|
||||||
asset_name: himalaya-${{ matrix.os_name }}.tar.gz
|
asset_name: himalaya-${{ matrix.os_name }}.tar.gz
|
||||||
asset_content_type: application/gzip
|
asset_content_type: application/gzip
|
||||||
deploy_crate:
|
deploy_crates:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
needs: create_release
|
needs: create_release
|
||||||
runs-on: linux
|
environment: deployment
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install rust
|
- name: Install rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
profile: minimal
|
||||||
- name: Check project
|
toolchain: stable
|
||||||
uses: actions-rs/cargo@v1
|
override: true
|
||||||
|
- uses: katyo/publish-crates@v1
|
||||||
with:
|
with:
|
||||||
command: check
|
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||||
- name: Publish package to crates.io
|
|
||||||
run: cargo publish
|
|
||||||
|
|
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [0.5.2] - 2022-02-02
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -266,7 +273,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Password from command [#22]
|
- Password from command [#22]
|
||||||
- Set up README [#20]
|
- 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.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.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
|
[0.5.0]: https://github.com/soywod/himalaya/compare/v0.4.0...v0.5.0
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -361,7 +361,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "himalaya"
|
name = "himalaya"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "himalaya"
|
name = "himalaya"
|
||||||
description = "Command-line interface for email management"
|
description = "Command-line interface for email management"
|
||||||
version = "0.5.2"
|
version = "0.5.3"
|
||||||
authors = ["soywod <clement.douin@posteo.net>"]
|
authors = ["soywod <clement.douin@posteo.net>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license-file = "LICENSE"
|
license-file = "LICENSE"
|
||||||
|
|
Loading…
Reference in a new issue