Compare commits

..

9 commits

Author SHA1 Message Date
a5a97066bc Merge branch 'master' into devel
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m53s
2024-05-13 15:38:02 +02:00
5dba8395d3 chore: bump version to v0.5.1
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m47s
2024-05-13 15:25:15 +02:00
0e1cbf7daa Merge pull request 'update to v0.5.1' (#81) from devel into master
Reviewed-on: #81
2024-05-13 15:25:15 +02:00
738946c2ae Merge branch 'master' into devel 2024-05-13 15:25:15 +02:00
409ba93bb9 Merge pull request 'feat/bintols/join-array' (#80) from feat/bintols/join-array into devel
Reviewed-on: #80
2024-05-13 15:25:15 +02:00
7928423d6e refactor(bintols-join): return err if the result cannot be converted to T #80 #79 2024-05-13 15:25:15 +02:00
3d25040743 Merge branch 'devel' into feat/bintols/join-array 2024-05-13 15:25:15 +02:00
PlexSheep
53e545832c automatic cargo CI changes 2024-05-13 15:25:15 +02:00
3ef1ffc337 test: add tests for the join module #79 2024-05-13 15:25:14 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ default-members = [".", "members/libpt-core"]
[workspace.package] [workspace.package]
publish = true publish = true
version = "0.5.0" version = "0.5.1"
edition = "2021" edition = "2021"
authors = ["Christoph J. Scherr <software@cscherr.de>"] authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT" license = "MIT"
@ -29,7 +29,7 @@ categories = [
anyhow = "1.0.79" anyhow = "1.0.79"
thiserror = "1.0.56" thiserror = "1.0.56"
libpt-core = { version = "0.4.0", path = "members/libpt-core" } libpt-core = { version = "0.4.0", path = "members/libpt-core" }
libpt-bintols = { version = "0.5.0", path = "members/libpt-bintols" } libpt-bintols = { version = "0.5.1", path = "members/libpt-bintols" }
libpt-log = { version = "0.4.2", path = "members/libpt-log" } libpt-log = { version = "0.4.2", path = "members/libpt-log" }
[package] [package]

View file

@ -1,7 +1,7 @@
[package] [package]
name = "libpt-bintols" name = "libpt-bintols"
publish.workspace = true publish.workspace = true
version = "0.5.0" version = "0.5.1"
edition.workspace = true edition.workspace = true
authors.workspace = true authors.workspace = true
license.workspace = true license.workspace = true