Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Apr 18, 2020
1 parent 6beb719 commit d83a7ff
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 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.14.0] - 2020-04-18
- Reworked `Vector`, making it iterable.
- Changed `Env::vector` to return a `Value`.
- Added `call_unprotected` variants to `Value::call`, `Env::call`, `GlobalRef::call`, to enable certain optimizations.
Expand Down Expand Up @@ -118,7 +120,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.2.0] - 2018-01-04
New reworked version

[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.13.0...HEAD
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.14.0...HEAD
[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
[0.12.3]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.2...0.12.3
[0.12.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.12.1...0.12.2
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.13.0"
version = "0.14.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.13.0"
title = "emacs-module-rs 0.14.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.13"
emacs = "0.14"
```

Write code in `src/lib.rs`:
Expand Down
2 changes: 1 addition & 1 deletion rs-module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ crate-type = ["cdylib"]
[dependencies]
lazy_static = "1.4"
libloading = "0.5.2"
emacs = { path = "..", version = "0.13.0" }
emacs = "0.13.0"

0 comments on commit d83a7ff

Please sign in to comment.