Skip to content

Commit d78ec5c

Browse files
committed
Release 0.12.0
1 parent 1c351a6 commit d78ec5c

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
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.12.0] - 2019-12-04
79
- Added `Env::make_vector` and `Env::vector` functions.
810
- Added a default implementation for `Transfer::type_name`. This raised the minimum supported Rust version to 1.38 (for `std::any::type_name()`).
911
- Added function to copy a Lisp string's content to a buffer `Value::copy_string_contents`.
@@ -97,7 +99,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9799
## [0.2.0] - 2018-01-04
98100
New reworked version
99101

100-
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.11.0...HEAD
102+
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.0...HEAD
103+
[0.12.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.11.0...0.12.0
101104
[0.11.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.3...0.11.0
102105
[0.10.3]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.2...0.10.3
103106
[0.10.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.1...0.10.2

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emacs"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "Rust library for creating Emacs's dynamic modules"
66
homepage = "https://github.com/ubolonton/emacs-module-rs"
@@ -27,8 +27,8 @@ failure = { version = "0.1.5", features = ["std"] }
2727
failure_derive = "0.1.5"
2828
lazy_static = "1.4"
2929
ctor = "0.1.12"
30-
emacs_module = { path = "emacs-module", version = "0.10.0" }
31-
emacs-macros = { path = "emacs-macros", version = "0.11.0" }
30+
emacs_module = { path = "emacs-module", version = "0.12.0" }
31+
emacs-macros = { path = "emacs-macros", version = "0.12.0" }
3232

3333
[features]
3434
utf-8-validation = []

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.11.0"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "Proc macros for emacs modules"
66
homepage = "https://github.com/ubolonton/emacs-module-rs"

emacs-module/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_module"
3-
version = "0.10.0"
3+
version = "0.12.0"
44
edition = "2018"
55
description = "Raw FFI for emacs-module"
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.11.0"
2+
title = "emacs-module-rs 0.12.0"
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.11.0"
20+
emacs = "0.12.0"
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.11.0"
3+
version = "0.12.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"
@@ -12,4 +12,4 @@ crate-type = ["cdylib"]
1212

1313
[dependencies]
1414
libloading = "0.5.2"
15-
emacs = { path = "..", version = "0.11.0" }
15+
emacs = { path = "..", version = "0.12.0" }

0 commit comments

Comments
 (0)