File tree Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
55
66## [ Unreleased]
7- - Made ` env.call ` a lot more flexible, fixing #15 . Also added ` value.call ` .
7+
8+ ## [ 0.11.0] - 2019-08-05
9+ - Made ` env.call ` a lot more flexible. Also added ` value.call ` .
810- Added ` rust-wrong-type-user-ptr ` to ` wrong-type-argument ` classification.
911- Deprecated ` emacs::module_init! ` and ` emacs::export_functions! ` .
1012- Replaced` IntoLisp ` implementation for ` AsRef<str> ` with separate implementations for ` &str ` and ` &String ` .
@@ -91,7 +93,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9193## [ 0.2.0] - 2018-01-04
9294New reworked version
9395
94- [ Unreleased ] : https://github.com/ubolonton/emacs-module-rs/compare/0.10.3...HEAD
96+ [ Unreleased ] : https://github.com/ubolonton/emacs-module-rs/compare/0.11.0...HEAD
97+ [ 0.11.0 ] : https://github.com/ubolonton/emacs-module-rs/compare/0.10.3...0.11.0
9598[ 0.10.3 ] : https://github.com/ubolonton/emacs-module-rs/compare/0.10.2...0.10.3
9699[ 0.10.2 ] : https://github.com/ubolonton/emacs-module-rs/compare/0.10.1...0.10.2
97100[ 0.10.1 ] : https://github.com/ubolonton/emacs-module-rs/compare/0.10.0...0.10.1
Original file line number Diff line number Diff line change 11[package ]
22name = " emacs"
3- version = " 0.10.3 "
3+ version = " 0.11.0 "
44edition = " 2018"
55description = " Rust library for creating Emacs's dynamic modules"
66homepage = " https://github.com/ubolonton/emacs-module-rs"
@@ -28,7 +28,7 @@ failure_derive = "0.1.1"
2828lazy_static = " 1.3.0"
2929ctor = " 0.1.7"
3030emacs_module = { path = " emacs-module" , version = " 0.10.0" }
31- emacs-macros = { path = " emacs-macros" , version = " 0.10.3 " }
31+ emacs-macros = { path = " emacs-macros" , version = " 0.11.0 " }
3232
3333[features ]
3434utf-8-validation = []
Original file line number Diff line number Diff line change 11[package ]
22name = " emacs-macros"
3- version = " 0.10.3 "
3+ version = " 0.11.0 "
44edition = " 2018"
55description = " Proc macros for emacs modules"
66homepage = " https://github.com/ubolonton/emacs-module-rs"
Original file line number Diff line number Diff line change 11[book ]
2- title = " emacs-module-rs 0.10.3 "
2+ title = " emacs-module-rs 0.11.0 "
33authors = [" ubolonton" ]
44multilingual = false
55src = " src"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ edition = "2018"
1717crate-type = [" cdylib" ]
1818
1919[dependencies ]
20- emacs = " 0.10.3 "
20+ emacs = " 0.11.0 "
2121```
2222
2323Write code in ` src/lib.rs ` :
Original file line number Diff line number Diff line change 11[package ]
22name = " emacs-rs-module"
3- version = " 0.10.1 "
3+ version = " 0.11.0 "
44edition = " 2018"
55authors = [
" Nguyễn Tuấn Anh <[email protected] >" ]
66description = " An Emacs dynamic module that helps developing other dynamic modules, in Rust"
@@ -12,4 +12,4 @@ crate-type = ["cdylib"]
1212
1313[dependencies ]
1414libloading = " 0.5.2"
15- emacs = { path = " .." , version = " 0.10.1 " }
15+ emacs = { path = " .." , version = " 0.11.0 " }
You can’t perform that action at this time.
0 commit comments