Skip to content

Commit

Permalink
Release 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Mar 16, 2024
1 parent 5a1c4ab commit e2532d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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.19.0] - 2024-03-16
- Upgraded to Rust 2021 edition.
- This also raised the minimum supported Rust version to 1.56.
- Added support for Rust's non-zero integer types.
Expand Down Expand Up @@ -150,7 +152,8 @@ For details, see Rust's [release note](https://github.com/rust-lang/rust/blob/1.
## [0.2.0] - 2018-01-04
New reworked version

[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.18.0...HEAD
[Unreleased]: https://github.com/ubolonton/emacs-module-rs/compare/0.19.0...HEAD
[0.19.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.18.0...0.19.0
[0.18.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.17.0...0.18.0
[0.17.0]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.2...0.17.0
[0.16.2]: https://github.com/ubolonton/emacs-module-rs/compare/0.16.0...0.16.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.18.0"
version = "0.19.0"
edition = "2021"
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.18"
title = "emacs-module-rs 0.19"
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.18"
emacs = "0.19"
```

Write code in `src/lib.rs`:
Expand Down

0 comments on commit e2532d7

Please sign in to comment.