Skip to content

Commit 0dc6d3d

Browse files
andrewleverettegorupBaeoMaltinskyandrewleverette
authored
Release 0.1.3 (carllerche#21)
* Add ability to define fn as async, also provide macros for traits and impls * fix broken test.. * Add support for function attributes and extern functions * Add missing whitespace * Add push_trait method to module * Add push_fn method to module, scope * Add correct version number * Update change log with release notes Co-authored-by: Ryan Gorup <gorup@users.noreply.github.com> Co-authored-by: Baeo Maltinsky <baeo.maltinsky@gmail.com> Co-authored-by: andrewleverette <andrew.leverette@decisionsource.com>
1 parent c0e7a76 commit 0dc6d3d

File tree

5 files changed

+285
-81
lines changed

5 files changed

+285
-81
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.1.3 (May 9, 2020)
2+
3+
### Added
4+
- Add support to define function attributes and extern functions
5+
- Add support to define async functions
6+
- Add support to add macros to traits and impls
7+
18
# 0.1.2 (May 9, 2020)
29

310
### Added

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ name = "codegen"
55
# - Update CHANGELOG.md.
66
# - Update doc URL.
77
# - Create "v0.1.x" git tag.
8-
version = "0.1.2"
8+
version = "0.1.3"
99
license = "MIT"
1010
authors = ["Carl Lerche <me@carllerche.com>"]
1111
description = "Library for generating Rust code"
12-
documentation = "https://docs.rs/codegen/0.1.2/codegen"
12+
documentation = "https://docs.rs/codegen/0.1.3/codegen"
1313
homepage = "https://github.com/carllerche/codegen"
1414
repository = "https://github.com/carllerche/codegen"
1515
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Provides an builder API to assist in generating Rust code.
66

77
More information about this crate can be found in the [crate documentation][dox]
88

9-
[dox]: https://docs.rs/codegen/0.1.1/codegen/
9+
[dox]: https://docs.rs/codegen/0.1.3/codegen/
1010

1111
## Installation
1212

1313
To use `codegen`, first add this to your `Cargo.toml`:
1414

1515
```toml
1616
[dependencies]
17-
codegen = "0.1.2"
17+
codegen = "0.1.3"
1818
```
1919

2020
Next, add this to your crate:

0 commit comments

Comments
 (0)