Skip to content

Commit 8f6cc86

Browse files
committed
Release 0.10.2
1 parent 9ca18d1 commit 8f6cc86

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
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.10.2] - 2019-07-24
79
- Added `defun_prefix` option to `#[module]`.
810
- Fixed `#[defun]` not handling raw identifiers correctly.
911

@@ -82,7 +84,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
8284
## [0.2.0] - 2018-01-04
8385
New reworked version
8486

85-
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.1...HEAD
87+
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.2...HEAD
88+
[0.10.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.1...0.10.2
8689
[0.10.1]: https://github.com/ubolonton/emacs-module-rs/compare/0.10.0...0.10.1
8790
[0.10.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.9.0...0.10.0
8891
[0.9.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.8.0...0.9.0

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.10.1"
3+
version = "0.10.2"
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 @@ failure_derive = "0.1.1"
2828
lazy_static = "1.3.0"
2929
ctor = "0.1.7"
3030
emacs_module = { path = "emacs-module", version = "0.10.0" }
31-
emacs-macros = { path = "emacs-macros", version = "0.10.0" }
31+
emacs-macros = { path = "emacs-macros", version = "0.10.2" }
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.10.0"
3+
version = "0.10.2"
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.10.1"
2+
title = "emacs-module-rs 0.10.2"
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.1"
20+
emacs = "0.10.2"
2121
```
2222

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

test-module/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "test-module"
3-
version = "0.10.1"
3+
version = "0.0.0"
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.1" }
13+
emacs = { path = ".." }
1414

1515
[dev-dependencies]
16-
emacs-rs-module = { path = "../rs-module", version = "0.10.1" }
16+
emacs-rs-module = { path = "../rs-module" }

0 commit comments

Comments
 (0)