Skip to content

Commit 22a599b

Browse files
chore: release
1 parent d5f6d8f commit 22a599b

File tree

9 files changed

+79
-9
lines changed

9 files changed

+79
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

popgetter-cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/Urban-Analytics-Technology-Platform/popgetter/compare/popgetter-cli-v0.2.1...popgetter-cli-v0.2.2) - 2025-04-02
11+
12+
### Other
13+
14+
- Update popgetter versions in Cargo.toml files
15+
- Sort deps
16+
- Fix missing feature for types
17+
- Remove LLM from default features for CLI
18+
- Initial README for popgetter-cli with LLM integration
19+
- Merge branch 'main' into 91-llm
20+
- Add base path to CLI, remove dev from subcommands
21+
- Add dev config to CLI
22+
- Add dev mode flag to CLI
23+
1024
### Fixed
1125

1226
- minor tweaks to the release process.

popgetter-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "popgetter-cli"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
license = "MIT"
66
description = "CLI for popgetter"
@@ -35,7 +35,7 @@ polars = { workspace = true, features = [
3535
"strings",
3636
"rows",
3737
] }
38-
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
38+
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
3939
popgetter-llm = { version = "0.1.0", path = "../popgetter-llm", optional = true }
4040
pretty_env_logger = { workspace = true }
4141
qdrant-client = { workspace = true, optional = true }

popgetter-core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/Urban-Analytics-Technology-Platform/popgetter/compare/popgetter-core-v0.2.1...popgetter-core-v0.2.2) - 2025-04-02
11+
12+
### Other
13+
14+
- Fix tests by deserializing back to Value
15+
- enforces consistant naming of README,md files
16+
- add extra readmes
17+
- Add dev config to CLI
18+
1019
### Fixed
1120

1221
- minor tweaks to the release process.

popgetter-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "popgetter-core"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Core library for popgetter"

popgetter-llm/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/Urban-Analytics-Technology-Platform/popgetter/releases/tag/popgetter-llm-v0.1.0) - 2025-04-02
11+
12+
### Other
13+
14+
- Add missing metadata fields ([#112](https://github.com/Urban-Analytics-Technology-Platform/popgetter/pull/112))
15+
- Update popgetter versions in Cargo.toml files
16+
- Sort deps
17+
- Remove obsolete comment
18+
- Ignore tests that require API ket/local database
19+
- Update README
20+
- Merge remote-tracking branch 'origin/main' into 91-llm
21+
- Move LLM CLI to popgetter_cli
22+
- Add logging
23+
- Refactor with recipe from JSON metadata
24+
- Add qdrant filtering and search params
25+
- Add optional search filter for country
26+
- Update deps and prompt
27+
- Add shuffle
28+
- Add skip
29+
- Add tokenizer and token count
30+
- Add logging and chunking of documents
31+
- Add API for sample size and seed for embeddings
32+
- Add to CLI
33+
- Initial impls for generating data request specs
34+
- Refactor main with clap
35+
- Move functionality from main to embedding module
36+
- Refactor into modules
37+
- Initial LLM chain for geographic entities
38+
- Add popgetter metadata and query
39+
- Initial LLM crate

popgetter-llm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ itertools = { workspace = true }
1313
langchain-rust = { workspace = true, features = ["qdrant", "qdrant-client"] }
1414
log = { workspace = true }
1515
polars = { workspace = true, features = ["json"] }
16-
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
16+
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
1717
pretty_env_logger = { workspace = true }
1818
qdrant-client = { workspace = true }
1919
rand = { workspace = true }

popgetter-py/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/Urban-Analytics-Technology-Platform/popgetter/compare/popgetter-py-v0.2.1...popgetter-py-v0.2.2) - 2025-04-02
11+
12+
### Other
13+
14+
- Update popgetter versions in Cargo.toml files
15+
- Fix README title
16+
- Fix breaking test by adding features
17+
1018
### Fixed
1119

1220
- minor tweaks to the release process.

popgetter-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "popgetter-py"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Python bindings for popgetter"
@@ -23,7 +23,7 @@ polars = { workspace = true, features = [
2323
"strings",
2424
"rows",
2525
] }
26-
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
26+
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
2727
pyo3 = { workspace = true, features = ["anyhow", "experimental-async"] }
2828
pyo3-polars = { workspace = true, features = ["derive", "dtype-struct"] }
2929
serde = { workspace = true }

0 commit comments

Comments
 (0)