Skip to content

Commit 5a95257

Browse files
committed
Release 0.1.3
1 parent e5735ac commit 5a95257

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010

11+
## [0.1.3] - 2023-07-12
12+
13+
### Changed
14+
15+
- Drop patch version bound of internal crates.
16+
- Switch from using type ascription synatx to using `as` for type overrides. ([#12](https://github.com/kyrias/sqlx-conditional-queries/issues/12), [#13](https://github.com/kyrias/sqlx-conditional-queries/issues/13))
17+
18+
1119
## [0.1.2] - 2023-02-16
1220

1321
### Fixed
@@ -16,4 +24,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1624

1725

1826
[Unreleased]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.2...main
27+
[0.1.3]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.2...0.1.3
1928
[0.1.2]: https://github.com/kyrias/sqlx-conditional-queries/compare/0.1.1...0.1.2

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66

77
[package]
88
name = "sqlx-conditional-queries"
9-
version = "0.1.2"
9+
version = "0.1.3"
1010
edition = "2021"
1111
description = "Compile-time conditional queries for SQLx"
1212
repository = "https://github.com/kyrias/sqlx-conditional-queries"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-conditional-queries-core"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "Internal functions for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-conditional-queries-macros"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "Macro definition for sqlx-conditional-queries"
66
repository = "https://github.com/kyrias/sqlx-conditional-queries"

0 commit comments

Comments
 (0)