From 661dbee3bd72c01806717ad55243a3809b31070c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Wed, 6 Jan 2021 13:33:53 +0700 Subject: [PATCH] Release 0.15.1 --- CHANGELOG.md | 7 +++++-- Cargo.toml | 4 ++-- emacs-macros/Cargo.toml | 2 +- rs-module/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffde84a..abab2e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index d2422eb..30e9054 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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" diff --git a/emacs-macros/Cargo.toml b/emacs-macros/Cargo.toml index 6b38948..9d54a1c 100644 --- a/emacs-macros/Cargo.toml +++ b/emacs-macros/Cargo.toml @@ -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" diff --git a/rs-module/Cargo.toml b/rs-module/Cargo.toml index fdd7979..ced94c6 100644 --- a/rs-module/Cargo.toml +++ b/rs-module/Cargo.toml @@ -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 "] description = "An Emacs dynamic module that helps developing other dynamic modules, in Rust" @@ -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" }