Skip to content

Commit

Permalink
Bumped to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrasingh committed Aug 23, 2024
1 parent 1125a86 commit 6643dec
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 31 deletions.
90 changes: 68 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion geoprox-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.5.0

- Added support for key expirations ([#15](https://github.com/ezrasingh/geoprox/issues/15)).
- Implemented serde for `SpatialIndex` ([#17](https://github.com/ezrasingh/geoprox/issues/17)).
- renamed `cache.rs` to `index.rs`
- renamed `cache.rs` to `index.rs`.
- Updated `kiddo` to [`v4.2.1`](https://github.com/sdd/kiddo/releases/tag/v4.2.1).

## 0.4.2

Expand Down
2 changes: 1 addition & 1 deletion geoprox-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geoprox-core"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
description = "Core library for Geoprox, provides geospatial indexing and search functionalities"
categories = ["science::geo", "data-structures", "algorithms", "caching"]
Expand Down
5 changes: 4 additions & 1 deletion geoprox-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.5.0

- Added support for TTL and key-expiration ([#15](https://github.com/ezrasingh/geoprox/issues/15)).
- Added support for snapshots and persistence ([#17](https://github.com/ezrasingh/geoprox/issues/17)).
- Using [`duration-string`](https://crates.io/crates/duration-string) crate to handle `Duration` configuration
- Using [`duration-string`](https://crates.io/crates/duration-string) crate to handle `Duration` configuration.
- Bumped `geoprox-core` to [v0.5.0](https://crates.io/crates/geoprox-core/0.5.0).

# 0.4.2

Expand Down
4 changes: 2 additions & 2 deletions geoprox-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geoprox-server"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Ezra Singh <[email protected]>"]
description = "Geoprox server implementation providing a HTTP API for geospatial queries and position tracking"
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.rs/geoprox-server"
license = "MIT OR Apache-2.0"

[dependencies]
geoprox-core = { path = "../geoprox-core", version = "0.4.2", features = [
geoprox-core = { path = "../geoprox-core", version = "0.5.0", features = [
"utoipa",
] }
axum = { version = "0.7.5", features = ["macros"] }
Expand Down
6 changes: 5 additions & 1 deletion geoprox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Improved default config behavior
## 0.5.0

- Improved default config behavior and config path parsing.
- Bumped `geoprox-core` to [v0.5.0](https://crates.io/crates/geoprox-core/0.5.0).
- Bumped `geoprox-server` to [v0.5.0](https://crates.io/crates/geoprox-server/0.5.0).

## 0.4.2

Expand Down
6 changes: 3 additions & 3 deletions geoprox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "geoprox"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Ezra Singh <[email protected]>"]
description = "Standalone CLI for running the Geoprox service"
Expand All @@ -12,8 +12,8 @@ documentation = "https://ezrasingh.github.io/geoprox/docs"
license = "MIT OR Apache-2.0"

[dependencies]
geoprox-core = { path = "../geoprox-core", version = "0.4.2" }
geoprox-server = { path = "../geoprox-server", version = "0.4.2" }
geoprox-core = { path = "../geoprox-core", version = "0.5.0" }
geoprox-server = { path = "../geoprox-server", version = "0.5.0" }
clap = { version = "4.5.4", features = ["derive", "env", "string"] }
serde = { version = "1.0.199", features = ["derive", "rc"] }
serde_json = "1.0.116"
Expand Down

0 comments on commit 6643dec

Please sign in to comment.