Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #13

Merged
merged 1 commit into from
Jul 31, 2024
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions merde_json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.1.0](https://github.com/bearcove/merde_json/compare/merde_json-v2.0.0...merde_json-v2.1.0) - 2024-07-31

### Added
- Introduce merde_json_types
2 changes: 1 addition & 1 deletion merde_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_json"
version = "2.0.0"
version = "2.1.0"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize JSON with jiter and declarative macros"
Expand Down
12 changes: 12 additions & 0 deletions merde_json_types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.0](https://github.com/bearcove/merde_json/releases/tag/merde_json_types-v2.0.0) - 2024-07-31

### Added
- Introduce merde_json_types
4 changes: 2 additions & 2 deletions merde_json_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ keywords = ["json", "serialization", "deserialization", "jiter"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde_json = { version = "2.0.0", path = "../merde_json", optional = true }
merde_json = { version = "2.1.0", path = "../merde_json", optional = true }
time = { version = "0.3.36", optional = true }

[dev-dependencies]
merde_json = { version = "2.0.0", path = "../merde_json" }
merde_json = { version = "2.1.0", path = "../merde_json" }
time = { version = "0.3.36", features = ["macros"] }

[features]
Expand Down