Skip to content

Commit

Permalink
Release 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Dec 27, 2020
1 parent d01e420 commit 352d5b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion 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.0] - 2020-12-27
- Disabled the [workaround](https://github.com/ubolonton/emacs-module-rs/pull/3) for Emacs's [GC bug #31238](https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31238) if possible (i.e. in Emacs 27+, where the bug was fixed). This should speed up module code in newer Emacs versions.

## [0.14.1] - 2020-10-14
Expand Down Expand Up @@ -125,7 +127,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.14.1...HEAD
[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
[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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emacs"
version = "0.14.1"
version = "0.15.0"
edition = "2018"
description = "Rust library for creating Emacs's dynamic modules"
homepage = "https://github.com/ubolonton/emacs-module-rs"
Expand Down
2 changes: 1 addition & 1 deletion guide/book.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[book]
title = "emacs-module-rs 0.14.0"
title = "emacs-module-rs 0.15.0"
authors = ["ubolonton"]
multilingual = false
src = "src"
Expand Down
2 changes: 1 addition & 1 deletion guide/src/hello.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
emacs = "0.14"
emacs = "0.15"
```

Write code in `src/lib.rs`:
Expand Down

0 comments on commit 352d5b6

Please sign in to comment.