Skip to content

Commit

Permalink
Merge pull request #103 from antonWetzel/main
Browse files Browse the repository at this point in the history
Fix json case for `DataAnnotation`
  • Loading branch information
jeertmans authored Aug 10, 2023
2 parents 3c9da44 + e2f75e6 commit e91e922
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## [Unrealeased](https://github.com/jeertmans/languagetool-rust/compare/v2.1.3...HEAD)

### Fixed

- Fixed serializing of `interpretAs` in `data`. [#103](https://github.com/jeertmans/languagetool-rust/pull/103)

## [2.1.3](https://github.com/jeertmans/languagetool-rust/compare/v2.1.2...v2.1.3)

### Chore
Expand Down
1 change: 1 addition & 0 deletions src/lib/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ where

#[derive(Clone, Debug, Deserialize, PartialEq, Eq, Serialize)]
#[non_exhaustive]
#[serde(rename_all = "camelCase")]
/// A portion of text to be checked.
pub struct DataAnnotation {
/// If set, the markup will be interpreted as this.
Expand Down

0 comments on commit e91e922

Please sign in to comment.