From 5bfa7bd776c22354fda5667293fc6bc7ae7507de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=E1=BA=A5n-Anh=20Nguy=E1=BB=85n?= Date: Thu, 4 Mar 2021 09:28:14 +0700 Subject: [PATCH] Release 0.16.2 --- CHANGELOG.md | 6 +++--- Cargo.toml | 4 ++-- emacs-module/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b28c4f..9e7d686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] -## [0.16.1] - 2021-03-01 +## [0.16.2] - 2021-03-04 - Fixed compilation on `aarch64-apple-darwin` (Apple Silicon). ## [0.16.0] - 2021-01-31 @@ -136,8 +136,8 @@ 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.16.1...HEAD -[0.16.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.0...0.16.1 +[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.2...HEAD +[0.16.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.0...0.16.2 [0.16.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.1...0.16.0 [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 diff --git a/Cargo.toml b/Cargo.toml index 02e53b0..b17e0d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs" -version = "0.16.1" +version = "0.16.2" edition = "2018" description = "Rust library for creating Emacs's dynamic modules" homepage = "https://github.com/ubolonton/emacs-module-rs" @@ -27,7 +27,7 @@ thiserror = "1.0" anyhow = "1.0" ctor = "0.1.12" once_cell = "1.2.0" -emacs_module = { path = "emacs-module", version = "0.12.0" } +emacs_module = { path = "emacs-module", version = "0.16.2" } emacs-macros = { path = "emacs-macros", version = "0.15.1" } [build-dependencies] diff --git a/emacs-module/Cargo.toml b/emacs-module/Cargo.toml index a9f51bc..27ce33a 100644 --- a/emacs-module/Cargo.toml +++ b/emacs-module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "emacs_module" -version = "0.12.0" +version = "0.16.2" edition = "2018" description = "Raw FFI for emacs-module" homepage = "https://github.com/ubolonton/emacs-module-rs"