Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.rs]
indent_size = 4
4 changes: 2 additions & 2 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.40.0
toolchain: 1.59.0
target: wasm32-unknown-unknown
override: true

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.49.0
toolchain: 1.59.0
override: true
components: rustfmt, clippy

Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

### Changed

- Bump min supported Rust version to 1.59.0 (same as cosmwasm-std)
- Upgrade codebase to Rust edition 2021

## [0.4.1] - 2022-05-05

### Changed

- Properly serialize `u128`/`i128` types when embedded in structs

## [0.4.0] - 2022-03-29

### Added

- Add support for `#[serde(untagged)]` enums representation

## [0.3.1] - 2021-01-19
Expand All @@ -26,6 +35,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
### Changed

Maintenance release:

- Update clippy version in CI to 1.49.0.
- Fix `clippy::manual-non-exhaustive` warnings.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
categories = ["wasm"]
description = "serde_json for Wasm programs (small, deterministic, no floats)"
documentation = "https://docs.rs/serde-json-wasm"
edition = "2018"
edition = "2021"
keywords = ["serde", "json", "wasm"]
license = "MIT OR Apache-2.0"
name = "serde-json-wasm"
Expand Down