Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

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

11 changes: 10 additions & 1 deletion popgetter-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

### Added

- dev config and mode flag to CLI
- README including popgetter-llm integration
- base path to CLI, remove dev from subcommands

### Fixed

- minor tweaks to the release process.
- fix missing feature for types

### Other

- none
- minor edits

## [0.2.0](https://github.com/Urban-Analytics-Technology-Platform/popgetter/releases/tag/popgetter-cli-v0.2.0) - 2025-01-10

Expand Down
4 changes: 2 additions & 2 deletions popgetter-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "popgetter-cli"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
description = "CLI for popgetter"
Expand Down Expand Up @@ -35,7 +35,7 @@ polars = { workspace = true, features = [
"strings",
"rows",
] }
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
popgetter-llm = { version = "0.1.0", path = "../popgetter-llm", optional = true }
pretty_env_logger = { workspace = true }
qdrant-client = { workspace = true, optional = true }
Expand Down
12 changes: 8 additions & 4 deletions popgetter-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
## [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

- minor tweaks to the release process.
### Added

### Other
- Add dev config to CLI

- none
### Fixed

- minor tweaks to the release process.
- tests by deserializing back to Value
- inconsistent naming of README.md files

## [0.2.0](https://github.com/Urban-Analytics-Technology-Platform/popgetter/releases/tag/popgetter-core-v0.2.0) - 2025-01-10

Expand Down
2 changes: 1 addition & 1 deletion popgetter-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "popgetter-core"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
description = "Core library for popgetter"
Expand Down
12 changes: 12 additions & 0 deletions popgetter-llm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/Urban-Analytics-Technology-Platform/popgetter/releases/tag/popgetter-llm-v0.1.0) - 2025-04-02

- add initial popgetter-llm crate ([#101](https://github.com/Urban-Analytics-Technology-Platform/popgetter/pull/101))
2 changes: 1 addition & 1 deletion popgetter-llm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ itertools = { workspace = true }
langchain-rust = { workspace = true, features = ["qdrant", "qdrant-client"] }
log = { workspace = true }
polars = { workspace = true, features = ["json"] }
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
pretty_env_logger = { workspace = true }
qdrant-client = { workspace = true }
rand = { workspace = true }
Expand Down
6 changes: 5 additions & 1 deletion popgetter-py/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

### Fixed

- minor tweaks to the release process.
- README title
- breaking test by adding pyo3-polar 'features' parameters

### Other

- none
- Update popgetter versions in Cargo.toml files

## [0.2.0](https://github.com/Urban-Analytics-Technology-Platform/popgetter/releases/tag/popgetter-py-v0.2.0) - 2025-01-10

Expand Down
4 changes: 2 additions & 2 deletions popgetter-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "popgetter-py"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
description = "Python bindings for popgetter"
Expand All @@ -23,7 +23,7 @@ polars = { workspace = true, features = [
"strings",
"rows",
] }
popgetter-core = { path = "../popgetter-core", version = "0.2.1" }
popgetter-core = { path = "../popgetter-core", version = "0.2.2" }
pyo3 = { workspace = true, features = ["anyhow", "experimental-async"] }
pyo3-polars = { workspace = true, features = ["derive", "dtype-struct"] }
serde = { workspace = true }
Expand Down
Loading