Skip to content

Commit e2532d7

Browse files
committed
Release 0.19.0
1 parent 5a1c4ab commit e2532d7

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
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.19.0] - 2024-03-16
79
- Upgraded to Rust 2021 edition.
810
- This also raised the minimum supported Rust version to 1.56.
911
- Added support for Rust's non-zero integer types.
@@ -150,7 +152,8 @@ For details, see Rust's [release note](https://github.com/rust-lang/rust/blob/1.
150152
## [0.2.0] - 2018-01-04
151153
New reworked version
152154

153-
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.18.0...HEAD
155+
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.19.0...HEAD
156+
[0.19.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.18.0...0.19.0
154157
[0.18.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.17.0...0.18.0
155158
[0.17.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.2...0.17.0
156159
[0.16.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.0...0.16.2

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
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.18"
2+
title = "emacs-module-rs 0.19"
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.18"
20+
emacs = "0.19"
2121
```
2222

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

0 commit comments

Comments
 (0)