Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #87

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
16 changes: 8 additions & 8 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[workspace]
resolver = "2"
members = ["crates/*", "terraphim_server", "desktop/src-tauri"]
default-members = ["terraphim_server"]
default-members = ["terraphim_server"]
7 changes: 7 additions & 0 deletions crates/terraphim_automata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_automata-v0.1.0...terraphim_automata-v0.1.1) - 2024-06-03

### Other
- Formatter applied
- Replaces uncommented
- Replaces uncommented

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_automata-v0.1.0) - 2024-04-29

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/terraphim_automata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_automata"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Automata for searching and processing knowledge graphs"
Expand All @@ -12,7 +12,7 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }

ahash = { version = "0.8.6", features = ["serde"] }
aho-corasick = "1.0.2"
Expand Down
11 changes: 11 additions & 0 deletions crates/terraphim_config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/terraphim/terraphim-ai/compare/terraphim_config-v0.1.0...terraphim_config-v0.2.0) - 2024-06-03

### Other
- cargo fmt
- Fixing test and consistent folder management, UI
- Fixing test and search logic for default scorer
- Spring clean config - refactor redundant fields and kg optional
- Spring clean config - refactor redundant fields and kg optional
- Update Tauri code after search endpoint changes ([#90](https://github.com/terraphim/terraphim-ai/pull/90))
- Replaces uncommented

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_config-v0.1.0) - 2024-04-29

### Other
Expand Down
12 changes: 6 additions & 6 deletions crates/terraphim_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_config"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim configuration"
Expand All @@ -18,10 +18,10 @@ path = "src/bin/main.rs"
name = "terraphim-config"

[dependencies]
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.1" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.1" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.1" }

opendal = { version = "0.44.2", features = [
"services-dashmap",
Expand Down Expand Up @@ -53,4 +53,4 @@ ulid = { version = "1.0.0", features = ["serde", "uuid"] }
thiserror = "1.0.53"

[dev-dependencies]
tempfile = "3.10.1"
tempfile = "3.10.1"
5 changes: 5 additions & 0 deletions crates/terraphim_middleware/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_middleware-v0.1.0...terraphim_middleware-v0.1.1) - 2024-06-03

### Other
- Spring clean config - refactor redundant fields and kg optional

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_middleware-v0.1.0) - 2024-04-29

### Other
Expand Down
12 changes: 6 additions & 6 deletions crates/terraphim_middleware/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_middleware"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim middleware for searching haystacks"
Expand All @@ -13,11 +13,11 @@ readme = "../../README.md"


[dependencies]
terraphim_config = { path = "../terraphim_config", version = "0.1.0" }
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.0" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }
terraphim_config = { path = "../terraphim_config", version = "0.2.0" }
terraphim_rolegraph = { path = "../terraphim_rolegraph", version = "0.1.1" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.1" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.1" }

ahash = { version = "0.8.8", features = ["serde"] }
cached = { version = "0.47.0", features = ["async", "serde", "ahash"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/terraphim_persistence/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_persistence-v0.1.0...terraphim_persistence-v0.1.1) - 2024-06-03

### Other
- updated the following local packages: terraphim_types

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_persistence-v0.1.0) - 2024-04-29

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/terraphim_persistence/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_persistence"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim persistence layer"
Expand All @@ -14,7 +14,7 @@ readme = "../../README.md"

[dependencies]
terraphim_settings = { path = "../terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }

tracing-subscriber = { version = "0.3", features = [
"env-filter",
Expand Down
5 changes: 5 additions & 0 deletions crates/terraphim_rolegraph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_rolegraph-v0.1.0...terraphim_rolegraph-v0.1.1) - 2024-06-03

### Removed
- removed sorting by key

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_rolegraph-v0.1.0) - 2024-04-29

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions crates/terraphim_rolegraph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_rolegraph"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim rolegraph module, which provides role handling for Terraphim AI."
Expand All @@ -12,8 +12,8 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_automata = { path = "../terraphim_automata", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_automata = { path = "../terraphim_automata", version = "0.1.1" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }

ahash = { version = "0.8.3", features = ["serde"] }
aho-corasick = "1.0.2"
Expand Down
11 changes: 11 additions & 0 deletions crates/terraphim_service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_service-v0.1.0...terraphim_service-v0.1.1) - 2024-06-03

### Other
- Layerfile and fmt check fixes
- Added rank to default scorer so UI can sort, partially fixes [#94](https://github.com/terraphim/terraphim-ai/pull/94)
- Fixing test and search logic for default scorer
- Spring clean config - refactor redundant fields and kg optional

### Removed
- removed sorting by key

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_service-v0.1.0) - 2024-04-29

### Other
Expand Down
10 changes: 5 additions & 5 deletions crates/terraphim_service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_service"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim service for handling user requests and responses."
Expand All @@ -12,11 +12,11 @@ license = "Apache-2.0"
readme = "../../README.md"

[dependencies]
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.0" }
terraphim_config = { path = "../terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../terraphim_middleware", version = "0.1.0" }
terraphim_persistence = { path = "../terraphim_persistence", version = "0.1.1" }
terraphim_config = { path = "../terraphim_config", version = "0.2.0" }
terraphim_middleware = { path = "../terraphim_middleware", version = "0.1.1" }
terraphim_settings = { path = "../terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.0" }
terraphim_types = { path = "../terraphim_types", version = "0.1.1" }

thiserror = "1.0.58"
opendal = { version = "0.44.2" }
Expand Down
5 changes: 5 additions & 0 deletions crates/terraphim_types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_types-v0.1.0...terraphim_types-v0.1.1) - 2024-06-03

### Other
- Fixing test and search logic for default scorer

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_types-v0.1.0) - 2024-04-29

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/terraphim_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_types"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Core types crate for Terraphim AI"
Expand Down
14 changes: 7 additions & 7 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ rust-version = "1.57"
tauri-build = { version = "1.5.1", features = [] }

[dependencies]
terraphim_automata = { path = "../../crates/terraphim_automata", version = "0.1.0" }
terraphim_config = { path = "../../crates/terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../../crates/terraphim_middleware", version = "0.1.0" }
terraphim_rolegraph = { path = "../../crates/terraphim_rolegraph", version = "0.1.0" }
terraphim_automata = { path = "../../crates/terraphim_automata", version = "0.1.1" }
terraphim_config = { path = "../../crates/terraphim_config", version = "0.2.0" }
terraphim_middleware = { path = "../../crates/terraphim_middleware", version = "0.1.1" }
terraphim_rolegraph = { path = "../../crates/terraphim_rolegraph", version = "0.1.1" }
terraphim_settings = { path = "../../crates/terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../../crates/terraphim_types", version = "0.1.0" }
terraphim_persistence = { path = "../../crates/terraphim_persistence", version = "0.1.0" }
terraphim_service = { path = "../../crates/terraphim_service", version = "0.1.0" }
terraphim_types = { path = "../../crates/terraphim_types", version = "0.1.1" }
terraphim_persistence = { path = "../../crates/terraphim_persistence", version = "0.1.1" }
terraphim_service = { path = "../../crates/terraphim_service", version = "0.1.1" }

anyhow = "1.0.81"
log = "0.4.21"
Expand Down
21 changes: 21 additions & 0 deletions terraphim_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/terraphim/terraphim-ai/compare/terraphim_server-v0.1.0...terraphim_server-v0.1.1) - 2024-06-03

### Other
- faster doc build
- cargo fmt
- Fixing test and consistent folder management
- Fixing test and search logic for default scorer
- Spring clean config - refactor redundant fields and kg optional
- Spring clean config - refactor redundant fields and kg optional
- cargo fmt
- node yarn fixes
- Logo fixes
- Update Tauri code after search endpoint changes ([#90](https://github.com/terraphim/terraphim-ai/pull/90))
- bumped rust version 1.76.0
- Formatter applied
- Merge remote-tracking branch 'origin' into replacer
- Replaces uncommented

### Removed
- removed sorting by key

## [0.1.0](https://github.com/terraphim/terraphim-ai/releases/tag/terraphim_server-v0.1.0) - 2024-04-29

### Fixed
Expand Down
16 changes: 8 additions & 8 deletions terraphim_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraphim_server"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Terraphim Contributors"]
description = "Terraphim service handling the core logic of the Terraphim AI."
Expand All @@ -12,14 +12,14 @@ license = "Apache-2.0"
readme = "../README.md"

[dependencies]
terraphim_persistence = { path = "../crates/terraphim_persistence", version = "0.1.0" }
terraphim_config = { path = "../crates/terraphim_config", version = "0.1.0" }
terraphim_middleware = { path = "../crates/terraphim_middleware", version = "0.1.0" }
terraphim_rolegraph = { path = "../crates/terraphim_rolegraph", version = "0.1.0" }
terraphim_persistence = { path = "../crates/terraphim_persistence", version = "0.1.1" }
terraphim_config = { path = "../crates/terraphim_config", version = "0.2.0" }
terraphim_middleware = { path = "../crates/terraphim_middleware", version = "0.1.1" }
terraphim_rolegraph = { path = "../crates/terraphim_rolegraph", version = "0.1.1" }
terraphim_settings = { path = "../crates/terraphim_settings", version = "0.1.0" }
terraphim_types = { path = "../crates/terraphim_types", version = "0.1.0" }
terraphim_automata = { path = "../crates/terraphim_automata", version = "0.1.0" }
terraphim_service = { path = "../crates/terraphim_service", version = "0.1.0" }
terraphim_types = { path = "../crates/terraphim_types", version = "0.1.1" }
terraphim_automata = { path = "../crates/terraphim_automata", version = "0.1.1" }
terraphim_service = { path = "../crates/terraphim_service", version = "0.1.1" }

anyhow = "1.0.40"
axum = { version = "0.6.2", features = ["macros"] }
Expand Down