# Changelog All notable changes to this project will be documented in this file. ## [0.4.0] - 2022-04-03 ### Bug Fixes - [**breaking**] Parse translations with labels correctly ### Documentation - Update CHANGELOG.md for v0.4.0 ## [0.3.0] - 2022-03-20 ### Bug Fixes - [**breaking**] Parse terms with labels correctly ### Documentation - Add CHANGELOG.md - Update CHANGELOG.md for v0.3.0 ### Refactor - Specify full path for Serialize/Deserialize derive macros in helper macro ### Build - Update dependencies to most recent versions ### Ci - Add dependabot configuration - Inform cargo-deny about license of new version of encoding-rs - Bump actions/checkout from 1 to 3 ## [0.2.0] - 2021-11-07 ### Features - Add endpoint POST /api/v1/auth/change-password - Upgrade version to v0.2.0 for publishing ### Refactor - Remove impl Into<> for constructors taking custom wrappers ### Documentation - Add badges to README ### Build System - Set Minimum Supported Rust Version 1.56 to in Cargo.toml ## [0.1.0] - 2021-10-27 Initial release. ### Features - Basic crate implementation: traits Endpoint, Client, Model, ... - Add endpoint POST /api/v1/projects/{projectId}/translations - Add endpoint GET /api/v1/projects/{projectId}/translations - Add endpoint DELETE /api/v1/projects/{projectId}/translations/{localeCode} - Add endpoint PATCH /api/v1/projects/{projectId}/translations/{localeCode} - Add endpoint GET /api/v1/projects/{projectId}/translations/{localeCode} - Add endpoint GET /api/v1/locales - Add endpoint PATCH /api/v1/users/me - Add endpoint GET /api/v1/users/me - Add endpoint DELETE /api/v1/users/me - Add endpoint DELETE /api/v1/projects/{projectId}/terms/{termId} - Add endpoint PATCH /api/v1/projects/{projectId}/terms/{termId} - Add endpoint GET /api/v1/project/{projectId}/terms - Add endpoint POST /api/v/1/project/{projectId}/terms - Add endpoint DELETE /api/v1/projects/{projectId} - Add endpoint PATCH /api/v1/projects/{projectId} - Add endpoint GET /api/v1/projects/{projectId} - Add endpoint POST /api/v1/projects - Add endpoint GET /api/v1/projects - Add endpoint GET /api/v1/auth/providers - Add endpoint POST /api/v1/auth/token - Add endpoint POST /api/v1/auth/signup ### CI - add basic CI setup