Skip to content

Commit

Permalink
feat: Bump dependencies and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioGasquez committed Nov 7, 2023
1 parent 119ec3a commit 69dd9fd
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 45 deletions.
14 changes: 2 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.8.0] - 2023-11-02

### Added
- Add symlink to LLVM in Unix systems (#380)

### Fixed

### Changed
- Reduce logs verbosity, add docstrings, and use async methods (#384)

### Removed

## [0.7.0] - 2023-10-18

### Added

### Fixed

### Changed
- Update GCC version to 13.2 (#373)
- Update logging format and log messages (#375, #376)

### Removed

## [0.6.1] - 2023-10-04

### Changed
Expand Down Expand Up @@ -89,7 +79,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.0] - 2022-10-07

[Unreleased]: https://github.com/esp-rs/espup/compare/v0.7.0...HEAD
[0.8.0]: https://github.com/esp-rs/espup/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/esp-rs/espup/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/esp-rs/espup/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/esp-rs/espup/compare/v0.5.0...v0.6.0
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "espup"
version = "0.7.1-dev"
version = "0.8.0"
authors = ["Sergio Gasquez Arcos <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -15,8 +15,8 @@ rust-version = "1.70"

[dependencies]
async-trait = "0.1.74"
clap = { version = "4.4.6", features = ["derive"] }
clap_complete = "4.4.3"
clap = { version = "4.4.7", features = ["derive"] }
clap_complete = "4.4.4"
console = "0.15.7"
directories = "5.0.1"
env_logger = "0.10.0"
Expand All @@ -27,19 +27,19 @@ miette = { version = "5.10.0", features = ["fancy"] }
regex = "1.10.2"
reqwest = { version = "0.11.22", features = ["blocking"] }
retry = "2.0.0"
serde_json = "1.0.107"
serde_json = "1.0.108"
strum = { version = "0.25.0", features = ["derive"] }
tar = "0.4.40"
tempfile = "3.8.0"
thiserror = "1.0.49"
tempfile = "3.8.1"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = ["full"] }
tokio-retry = "0.3.0"
update-informer = "1.1.0"
xz2 = "0.1.7"
zip = "0.6.6"

[target.'cfg(unix)'.dependencies]
openssl = { version = "0.10.57", features = ["vendored"] }
openssl = { version = "0.10.58", features = ["vendored"] }

[target.'cfg(windows)'.dependencies]
winreg = "0.51.0"
Expand Down

0 comments on commit 69dd9fd

Please sign in to comment.