Skip to content

Commit

Permalink
Bump version number for 0.5.0 postrelease (#163)
Browse files Browse the repository at this point in the history
This PR bumps the cargo version number to 0.6.0-dev, now that we've
released 0.5.0. I also added a top-level Cargo.toml file to allow cargo
operations from the root directory, as we do in the toolkit project.
  • Loading branch information
tjgreen42 authored Nov 15, 2024
1 parent 59e3b95 commit 7104193
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 13 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[workspace]
members = ["pgvectorscale"]
resolver = "2"

[profile.dev]
panic = "unwind"

[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1
#debug = true
12 changes: 1 addition & 11 deletions pgvectorscale/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vectorscale"
version = "0.5.0"
version = "0.6.0-dev"
edition = "2021"

[lib]
Expand Down Expand Up @@ -36,16 +36,6 @@ pgrx-pg-config = "=0.12.5"
criterion = "0.5.1"
tempfile = "3.3.0"

[profile.dev]
panic = "unwind"

[profile.release]
panic = "unwind"
opt-level = 3
lto = "fat"
codegen-units = 1
#debug = true

[[bench]]
name = "distance"
harness = false
Expand Down

0 comments on commit 7104193

Please sign in to comment.