Skip to content

Commit

Permalink
Bump to 0.9.0 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed Jun 15, 2024
1 parent f8846d3 commit 7f7879f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.0] - 2024-06-15

* Add `current_exe` and `utf8_current_exe` functions to the `utils` module to return native pathbufs wrapping the standard library paths.
* Add `temp_dir` and `utf8_temp_dir` functions to the `utils` module to return native pathbufs wrapping the standard library paths.

## [0.8.0] - 2024-02-24

* Add `push_checked` function, which ensures that any path added to an existing `PathBuf` or `TypedPathBuf` must abide by the following rules:
Expand Down Expand Up @@ -119,7 +124,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Initial release of the library!

[Unreleased]: https://github.com/chipsenkbeil/typed-path/compare/v0.7.1...HEAD
[Unreleased]: https://github.com/chipsenkbeil/typed-path/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/chipsenkbeil/typed-path/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/chipsenkbeil/typed-path/compare/v0.5.0...v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "typed-path"
description = "Provides typed variants of Path and PathBuf for Unix and Windows"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
authors = ["Chip Senkbeil <[email protected]>"]
categories = ["development-tools", "filesystem", "os"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Unix and Windows.

```toml
[dependencies]
typed-path = "0.8"
typed-path = "0.9"
```

As of version `0.7`, this library also supports `no_std` environments that
Expand Down

0 comments on commit 7f7879f

Please sign in to comment.