Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
yupferris committed Nov 29, 2020
1 parent dd3c76c commit 3ba2b92
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@ 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.1.14] - 2020-11-29
### Changed
- Doc comments link to items by name instead of by path, as this is now supported as of [Rust 1.48.0](https://blog.rust-lang.org/2020/11/19/Rust-1.48.html).
- Dependencies updated to latest versions

### Fixed
- Stack overflow bugs by eliminating recursive graph traversals
- Invalid/outdated code in README.md
- Code formatting lints in kaze-sim-tests

## [0.1.13] - 2020-10-12
### Added
Expand Down Expand Up @@ -106,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.0] - 2020-01-25 (Initial release)

[Unreleased]: https://github.com/yupferris/kaze/compare/v0.1.13...HEAD
[Unreleased]: https://github.com/yupferris/kaze/compare/v0.1.14...HEAD
[0.1.14]: https://github.com/yupferris/kaze/compare/v0.1.13..v0.1.14
[0.1.13]: https://github.com/yupferris/kaze/compare/v0.1.12..v0.1.13
[0.1.12]: https://github.com/yupferris/kaze/compare/v0.1.11..v0.1.12
[0.1.11]: https://github.com/yupferris/kaze/compare/v0.1.10..v0.1.11
Expand Down
2 changes: 1 addition & 1 deletion kaze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kaze"
version = "0.1.13" # Must be kept up-to-date with html_root_url in lib.rs
version = "0.1.14" # Must be kept up-to-date with html_root_url in lib.rs
authors = ["Jake \"ferris\" Taylor <[email protected]>"]
edition = "2018"
description = "An HDL embedded in Rust"
Expand Down
2 changes: 1 addition & 1 deletion kaze/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
//! ```
// Must be kept up-to-date with version in Cargo.toml
#![doc(html_root_url = "https://docs.rs/kaze/0.1.13")]
#![doc(html_root_url = "https://docs.rs/kaze/0.1.14")]

mod code_writer;
mod graph;
Expand Down

0 comments on commit 3ba2b92

Please sign in to comment.