Skip to content

Commit b63d77c

Browse files
committed
Add CHANGELOG and prepare for 0.1.1 release
1 parent 25a3b13 commit b63d77c

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.1] - 2019-01-16
11+
12+
### Added
13+
14+
* UUIDs for primitives and some std types.
15+
* More readible versions of the UUIDs for amethyst types.
16+
17+
## [0.1.0] - 2019-01-09
18+
19+
* `TypeUuid` and `TypeUuidDynamic` traits.
20+
* `Bytes` type.
21+
* Custom derive support for `TypeUuid`.
22+
* UUIDs for some amethyst types.
23+
24+
[Unreleased]: https://github.com/randomPoison/type-uuid/compare/v0.1.1...HEAD
25+
[0.1.1]: https://github.com/randomPoison/type-uuid/compare/v0.1.0...v0.1.1
26+
[0.1.0]: https://github.com/randomPoison/type-uuid/compare/16d3369...v0.1.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "type-uuid"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["David LeGare <[email protected]>", "Jacob Kiesel <[email protected]>"]
55
edition = "2018"
66

@@ -12,7 +12,7 @@ license = "Apache-2.0 OR MIT"
1212
categories = ["rust-patterns"]
1313

1414
[dependencies]
15-
type-uuid-derive = { version = "0.1.0", path = "./type-uuid-derive" }
15+
type-uuid-derive = { version = "0.1.1", path = "./type-uuid-derive" }
1616
amethyst = { version = "0.10.0", optional = true }
1717

1818
[dev-dependencies]

type-uuid-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "type-uuid-derive"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["David LeGare <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)