Skip to content

Commit fbb0c7a

Browse files
committed
Release 0.17.0
1 parent 81e20eb commit fbb0c7a

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
7+
8+
## [0.17.0] - 2021-03-09
79
- Added `OnceGlobalRef`, which eases the initialization of static references to long-lived Lisp values.
810
+ Added `use_symbols!`, which enables module code to use Lisp symbols without repeatedly interning them.
911
+ Added `define_errors!` and `Env::signal` to simplify the process of defining and signaling custom Lisp errors.
@@ -142,7 +144,8 @@ For details, see Rust's [release note](https://github.com/rust-lang/rust/blob/1.
142144
## [0.2.0] - 2018-01-04
143145
New reworked version
144146

145-
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.2...HEAD
147+
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.17.0...HEAD
148+
[0.17.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.2...0.17.0
146149
[0.16.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.0...0.16.2
147150
[0.16.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.1...0.16.0
148151
[0.15.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.15.0...0.15.1

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.16.2"
3+
version = "0.17.0"
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 @@ anyhow = "1.0"
2828
ctor = "0.1.12"
2929
once_cell = "1.2.0"
3030
emacs_module = { path = "emacs-module", version = "0.16.2" }
31-
emacs-macros = { path = "emacs-macros", version = "0.15.1" }
31+
emacs-macros = { path = "emacs-macros", version = "0.17.0" }
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.15.1"
3+
version = "0.17.0"
44
edition = "2018"
55
description = "Proc macros for emacs modules"
66
homepage = "https://github.com/ubolonton/emacs-module-rs"

guide/book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[book]
2-
title = "emacs-module-rs 0.16.0"
2+
title = "emacs-module-rs 0.17"
33
authors = ["ubolonton"]
44
multilingual = false
55
src = "src"

guide/src/hello.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ edition = "2018"
1717
crate-type = ["cdylib"]
1818

1919
[dependencies]
20-
emacs = "0.16"
20+
emacs = "0.17"
2121
```
2222

2323
Write code in `src/lib.rs`:

rs-module/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-rs-module"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
edition = "2018"
55
authors = ["Nguyễn Tuấn Anh <[email protected]>"]
66
description = "An Emacs dynamic module that helps developing other dynamic modules, in Rust"
@@ -13,4 +13,4 @@ crate-type = ["cdylib"]
1313
[dependencies]
1414
lazy_static = "1.4"
1515
libloading = "0.5.2"
16-
emacs = { path = "..", version = "0.16.0" }
16+
emacs = { path = "..", version = "0.17.0" }

src/lib.rs

100755100644
File mode changed.

0 commit comments

Comments
 (0)