Skip to content

Commit

Permalink
Release 0.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeckwith committed Aug 11, 2023
1 parent 394ec08 commit 4edab0a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.5.8

* Adds basic formatting (indentation and spacing) to emitted TypeScript code to make it more readable ([#25](https://github.com/dbeckwith/rust-typescript-type-def/pull/25)).

## v0.5.7

* Fix an issue where doc-comments were emitted on both the type definition and the object for structs, as well as an issue where doc-comments meant for a type definition could be emitted on the namespace instead (#20).
Expand All @@ -10,15 +14,15 @@

## v0.5.5

* Fix `TypeDef` impls for `HashMap` and `HashSet` to allow any hasher generic parameter.
* Fix `TypeDef` impls for `HashMap` and `HashSet` to allow any hasher generic parameter ([#16](https://github.com/dbeckwith/rust-typescript-type-def/pull/16)).

## v0.5.4

* Add `TypeDef` impls for more string types (`PathBuf`, `Path`, `CString`, `CStr`, `OsString`, `OsStr`).

## v0.5.3

* Fix issue where unsupported serde attributes would panic the derive macro (#10).
* Fix issue where unsupported serde attributes would panic the derive macro ([#10](https://github.com/dbeckwith/rust-typescript-type-def/issues/10)).

## v0.5.2

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [

[package]
name = "typescript-type-def"
version = "0.5.7"
version = "0.5.8"
edition = "2018"
description = "Generate TypeScript type definitions for Rust types"
license = "MIT"
Expand All @@ -27,7 +27,7 @@ include = [
json_value = ["serde_json"]

[dependencies]
typescript-type-def-derive = { version = "=0.5.7", path = "./derive" }
typescript-type-def-derive = { version = "=0.5.8", path = "./derive" }
serde_json = { version = "1.0.64", optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typescript-type-def-derive"
version = "0.5.7"
version = "0.5.8"
edition = "2018"
description = "Derive procedural macro for typescript-type-def"
license = "MIT"
Expand Down

0 comments on commit 4edab0a

Please sign in to comment.