Skip to content

Commit 7bda2f0

Browse files
chore: release v0.2.2
1 parent a19258a commit 7bda2f0

File tree

8 files changed

+74
-8
lines changed

8 files changed

+74
-8
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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ 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+
- Sort deps
15+
- Fix missing feature for types
16+
- Remove LLM from default features for CLI
17+
- Initial README for popgetter-cli with LLM integration
18+
- Merge branch 'main' into 91-llm
19+
- Add base path to CLI, remove dev from subcommands
20+
- Add dev config to CLI
21+
- Add dev mode flag to CLI
22+
1023
### Fixed
1124

1225
- 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.0" }
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: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
- Sort deps
15+
- Remove obsolete comment
16+
- Ignore tests that require API ket/local database
17+
- Update README
18+
- Merge remote-tracking branch 'origin/main' into 91-llm
19+
- Move LLM CLI to popgetter_cli
20+
- Add logging
21+
- Refactor with recipe from JSON metadata
22+
- Add qdrant filtering and search params
23+
- Add optional search filter for country
24+
- Update deps and prompt
25+
- Add shuffle
26+
- Add skip
27+
- Add tokenizer and token count
28+
- Add logging and chunking of documents
29+
- Add API for sample size and seed for embeddings
30+
- Add to CLI
31+
- Initial impls for generating data request specs
32+
- Refactor main with clap
33+
- Move functionality from main to embedding module
34+
- Refactor into modules
35+
- Initial LLM chain for geographic entities
36+
- Add popgetter metadata and query
37+
- Initial LLM crate

popgetter-py/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ 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+
- Fix README title
15+
- Fix breaking test by adding features
16+
1017
### Fixed
1118

1219
- 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.0" }
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)