Skip to content
Snippets Groups Projects
Verified Commit 5bcee3c8 authored by David Runge's avatar David Runge :chipmunk:
Browse files

chore(version): 0.2.0

parent c2e02b91
No related branches found
Tags 1.23.1-1
No related merge requests found
Pipeline #68960 passed
...@@ -3,6 +3,49 @@ SPDX-FileCopyrightText: 2023 David Runge <dvzrv@archlinux.org> ...@@ -3,6 +3,49 @@ SPDX-FileCopyrightText: 2023 David Runge <dvzrv@archlinux.org>
SPDX-License-Identifier: CC-BY-SA-4.0 SPDX-License-Identifier: CC-BY-SA-4.0
--> -->
- - - - - -
## 0.2.0 - 2023-06-01
#### Bug Fixes
- **(SchemaVersion)** Use semver:Version as SemverVersion to prevent name clash - (1725d10) - David Runge
- Sort Error variants alphabetically - (19ba3ed) - David Runge
- Use String for initialization where possible - (b693cfc) - David Runge
- Remove implementations of Deref - (1011148) - David Runge
- Apply NewType pattern for all types wrapping one other type - (883526f) - David Runge
#### Documentation
- **(BuildDir)** Add example in README. - (a0eee64) - David Runge
- Fix all code examples in README. - (1b87592) - David Runge
- Split examples into sections based on modules - (f4e929a) - David Runge
- Add documentation for Error::InvalidVersion and fix for SchemaVersion - (ad7eaac) - David Runge
- Reference 'deny' at the CONTRIBUTING.md - (15c7352) - Leonidas Spyropoulos
#### Features
- **(Version)** Add method to create Version with Pkgrel - (25b1001) - David Runge
- Add StartDir type - (c2e02b9) - David Runge
- Add Installed type - (9b3c92b) - David Runge
- Implement BuildToolVer type - (6276f82) - David Runge
- Derive Architecture from Ord and PartialOrd to allow comparison. - (d9eae8d) - David Runge
- Include README.md as top-level documentation - (ab8d882) - David Runge
- Add Version type - (967cdc8) - David Runge
- Implement BuildDir type - (b50c34e) - Leonidas Spyropoulos
- Use cargo deny instead of only cargo audit in CI and tests - (c28c48f) - David Runge
- Add BuildOption, BuildEnv and PackageOption types - (a22506b) - David Runge
- Add BuildTool type to describe a buildtool name - (a67b54f) - David Runge
- Use Newtype pattern for Name type and use Ord and PartialOrd macros - (66e744a) - David Runge
- Add Packager type - (be30773) - David Runge
- Add SchemaVersion type - (10fc69a) - David Runge
#### Miscellaneous Chores
- **(lib)** Sort imports by std/external/alphabetically. - (55dfadf) - David Runge
#### Refactoring
- Move environmen related types to separate module - (5442732) - David Runge
- Move package related types to separate module - (860ecb6) - David Runge
- Move system related types to separate module - (28b3662) - David Runge
- Move checksum related types to separate module - (1eec013) - David Runge
- Move date related types to separate module - (a15dafb) - David Runge
- Move size related types to separate module - (e194bc1) - David Runge
- Move name related types to separate module - (9314901) - David Runge
- Move path related types to separate module - (b14ba8b) - David Runge
- Move version related types to separate module - (078c77b) - David Runge
- - -
## 0.1.0 - 2023-04-04 ## 0.1.0 - 2023-04-04
#### Continuous Integration #### Continuous Integration
- Add check scripts and Gitlab CI integration - (a301b04) - David Runge - Add check scripts and Gitlab CI integration - (a301b04) - David Runge
......
...@@ -13,7 +13,7 @@ name = "alpm-types" ...@@ -13,7 +13,7 @@ name = "alpm-types"
readme = "README.md" readme = "README.md"
repository = "https://gitlab.archlinux.org/archlinux/alpm/alpm-types" repository = "https://gitlab.archlinux.org/archlinux/alpm/alpm-types"
rust-version = "1.60.0" rust-version = "1.60.0"
version = "0.1.0" version = "0.2.0"
[dependencies] [dependencies]
chrono = { version = "0.4.24", features = ["clock"], default-features = false } chrono = { version = "0.4.24", features = ["clock"], default-features = false }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment