Skip to content

Commit 2c0668f

Browse files
committed
0.10.1
1 parent 0898300 commit 2c0668f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77
- Made `Vector::get` generic by return type.
8-
- Added `FromLisp` and `IntoLisp` implementations for most integer types, and an optional feature `lossy-integer-conversion` to control their behavior.
8+
- Added `FromLisp` and `IntoLisp` implementations for most integer types, and an optional feature `lossy-integer-conversion` to control their behavior. This allows them to be used in `#[defun]` signatures.
99
- Made `Env::message` take `AsRef<str>`, not just a `&str`.
1010

1111
## [0.10.0] - 2019-07-17

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"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2018"
55
description = "Rust library for creating Emacs's dynamic 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.10.0"
2+
title = "emacs-module-rs 0.10.1"
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.10.0"
20+
emacs = "0.10.1"
2121
```
2222

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

test-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 = "test-module"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
edition = "2018"
55
authors = ["Nguyễn Tuấn Anh <[email protected]>"]
66
publish = false
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
lazy_static = "1.3.0"
13-
emacs = { path = "..", version = "0.10.0" }
13+
emacs = { path = "..", version = "0.10.1" }
1414

1515
[dev-dependencies]
1616
emacs-rs-module = { path = "../rs-module", version = "0.7.0" }

0 commit comments

Comments
 (0)