mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-24 20:10:23 +00:00
release v0.7.3
This commit is contained in:
parent
9453f83c94
commit
a7e9c560c2
4 changed files with 9 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -93,6 +93,8 @@ jobs:
|
||||||
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:
|
||||||
|
toolchain: stable
|
||||||
- name: Builds release
|
- name: Builds release
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
@ -110,7 +112,7 @@ jobs:
|
||||||
./himalaya.exe completion powershell > ./completions/himalaya.powershell
|
./himalaya.exe completion powershell > ./completions/himalaya.powershell
|
||||||
./himalaya.exe completion zsh > ./completions/himalaya.zsh
|
./himalaya.exe completion zsh > ./completions/himalaya.zsh
|
||||||
tar -czf himalaya.tar.gz himalaya.exe man completions
|
tar -czf himalaya.tar.gz himalaya.exe man completions
|
||||||
zip -r himalaya.zip himalaya.exe man completions
|
tar -czf himalaya.zip himalaya.exe man completions
|
||||||
- name: Upload tar.gz release asset
|
- name: Upload tar.gz release asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.3] - 2023-05-01
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed Windows releases (due to typo in the github action script).
|
- Fixed Windows releases (due to typo in the github action script).
|
||||||
|
@ -553,7 +555,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.7.2...develop
|
[Unreleased]: https://github.com/soywod/himalaya/compare/v0.7.3...HEAD
|
||||||
|
[0.7.3]: https://github.com/soywod/himalaya/compare/v0.7.2...v0.7.3
|
||||||
[0.7.2]: https://github.com/soywod/himalaya/compare/v0.7.1...v0.7.2
|
[0.7.2]: https://github.com/soywod/himalaya/compare/v0.7.1...v0.7.2
|
||||||
[0.7.1]: https://github.com/soywod/himalaya/compare/v0.7.0...v0.7.1
|
[0.7.1]: https://github.com/soywod/himalaya/compare/v0.7.0...v0.7.1
|
||||||
[0.7.0]: https://github.com/soywod/himalaya/compare/v0.6.1...v0.7.0
|
[0.7.0]: https://github.com/soywod/himalaya/compare/v0.6.1...v0.7.0
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -777,7 +777,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "himalaya"
|
name = "himalaya"
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"atty",
|
"atty",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "himalaya"
|
name = "himalaya"
|
||||||
description = "CLI to manage your emails."
|
description = "CLI to manage your emails."
|
||||||
version = "0.7.2"
|
version = "0.7.3"
|
||||||
authors = ["soywod <clement.douin@posteo.net>"]
|
authors = ["soywod <clement.douin@posteo.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in a new issue