Skip to content

Commit

Permalink
Release 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Jan 6, 2021
1 parent 9969e1d commit 661dbee
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.15.1] - 2021-01-06
- Fixed compilation errors on new versions of `syn`, which removed the `export` module.

## [0.15.0] - 2020-12-27
Expand Down Expand Up @@ -128,8 +130,9 @@ For details, see Rust's [release note](https://github.com/rust-lang/rust/blob/1.
## [0.2.0] - 2018-01-04
New reworked version

[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.0...HEAD
[0.15.01]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.1...0.15.0
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.1...HEAD
[0.15.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.0...0.15.1
[0.15.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.1...0.15.0
[0.14.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.0...0.14.1
[0.14.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.13.0...0.14.0
[0.13.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.3...0.13.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs"
version = "0.15.0"
version = "0.15.1"
edition = "2018"
description = "Rust library for creating Emacs's dynamic modules"
homepage = "https://github.com/ubolonton/emacs-module-rs"
Expand Down Expand Up @@ -28,7 +28,7 @@ failure_derive = "0.1.5"
ctor = "0.1.12"
once_cell = "1.2.0"
emacs_module = { path = "emacs-module", version = "0.12.0" }
emacs-macros = { path = "emacs-macros", version = "0.14.1" }
emacs-macros = { path = "emacs-macros", version = "0.15.1" }

[build-dependencies]
rustc_version = "0.2.3"
Expand Down
2 changes: 1 addition & 1 deletion emacs-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs-macros"
version = "0.14.1"
version = "0.15.1"
edition = "2018"
description = "Proc macros for emacs modules"
homepage = "https://github.com/ubolonton/emacs-module-rs"
Expand Down
4 changes: 2 additions & 2 deletions rs-module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs-rs-module"
version = "0.13.0"
version = "0.15.1"
edition = "2018"
authors = ["Nguyễn Tuấn Anh <[email protected]>"]
description = "An Emacs dynamic module that helps developing other dynamic modules, in Rust"
Expand All @@ -13,4 +13,4 @@ crate-type = ["cdylib"]
[dependencies]
lazy_static = "1.4"
libloading = "0.5.2"
emacs = { path = "..", version = "0.15.0" }
emacs = { path = "..", version = "0.15.1" }

0 comments on commit 661dbee

Please sign in to comment.