Skip to content

Commit

Permalink
Post-release fixes
Browse files Browse the repository at this point in the history
- Roll over changelog
- Fix doctest for serde
- Adjust docs.rs upload to activate all features
  • Loading branch information
filmor committed Mar 21, 2024
1 parent 3b4a491 commit 0fb26fc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ versions.

## [unreleased]

### Added
### Fixed
### Changed

## [0.32.1] - 2024-03-21

### Added

- Map iterators are now [DoubleEndedIterators](https://doc.rust-lang.org/std/iter/trait.DoubleEndedIterator.html)
Expand All @@ -19,8 +25,6 @@ versions.
- Optional codec for `num_bigint::BigInt` using the `big_integer` feature (#601)
- Add experimental `serde` support derived from `serde_rustler`

### Fixed

### Changed

- Adjust C char types to use the proper FFI type (#592)
Expand All @@ -32,6 +36,10 @@ versions.
- `rustler_bigint` is replaced by a feature flag and the wrapper is not
necessary anymore (#601)

## [0.32.0] - 2024-03-20

Yanked because it did not include all merged changes.

## [0.31.0] - 2024-02-13

### Added
Expand Down
3 changes: 3 additions & 0 deletions rustler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ replace = "def rustler_version, do: \"{{version}}\""
file = "../rustler_codegen/Cargo.toml"
search = "# rustler_codegen version\nversion = \"[^\"]+\""
replace = "# rustler_codegen version\nversion = \"{{version}}\""

[package.metadata.docs.rs]
all-features = true
3 changes: 1 addition & 2 deletions rustler/src/serde/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ in a better way and allow more Erlang-y configurations).
## Example
```rust
use rustler;
use rustler::{self, Encoder, SerdeTerm};
use serde::{Serialize, Deserialize};
use serde_rustler::{from_term, to_term};
rustler::init!("Elixir.SerdeNif", [readme]);
Expand Down

0 comments on commit 0fb26fc

Please sign in to comment.