Skip to content

Commit e24c180

Browse files
committed
Release 0.14.1
1 parent 6c4a0f1 commit e24c180

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77

8+
## [0.14.1] - 2020-10-14
9+
- Fixed proc macro's hygiene issues, for compatibility with Rust 1.47. Example: `emacs-tree-sitter` [fails to compile](https://github.com/ubolonton/emacs-tree-sitter/issues/62).
10+
For details, see Rust's [release note](https://github.com/rust-lang/rust/blob/1.47.0/RELEASES.md#compatibility-notes) and [PR that introduced this change](https://github.com/rust-lang/rust/pull/73084/).
11+
812
## [0.14.0] - 2020-04-18
913
- Reworked `Vector`, making it iterable.
1014
- Changed `Env::vector` to return a `Value`.
@@ -120,7 +124,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
120124
## [0.2.0] - 2018-01-04
121125
New reworked version
122126

123-
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.0...HEAD
127+
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.1...HEAD
128+
[0.14.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.0...0.14.1
124129
[0.14.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.13.0...0.14.0
125130
[0.13.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.3...0.13.0
126131
[0.12.3]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.2...0.12.3

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emacs"
3-
version = "0.14.0"
3+
version = "0.14.1"
44
edition = "2018"
55
description = "Rust library for creating Emacs's dynamic modules"
66
homepage = "https://github.com/ubolonton/emacs-module-rs"
@@ -28,7 +28,7 @@ failure_derive = "0.1.5"
2828
ctor = "0.1.12"
2929
once_cell = "1.2.0"
3030
emacs_module = { path = "emacs-module", version = "0.12.0" }
31-
emacs-macros = { path = "emacs-macros", version = "0.13.0" }
31+
emacs-macros = { path = "emacs-macros", version = "0.14.1" }
3232

3333
[build-dependencies]
3434
rustc_version = "0.2.3"

emacs-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emacs-macros"
3-
version = "0.13.0"
3+
version = "0.14.1"
44
edition = "2018"
55
description = "Proc macros for emacs modules"
66
homepage = "https://github.com/ubolonton/emacs-module-rs"

0 commit comments

Comments
 (0)