Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 664888a

Browse files
authoredJan 26, 2025··
Merge branch 'main' into create_tip_tap_documents
2 parents 552b4b4 + a8cd217 commit 664888a

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed
 

‎Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "refactor_platform_rs"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
default-run = "refactor_platform_rs"

‎domain/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "domain"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
[dependencies]

‎entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "entity"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
[lib]

‎entity_api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "entity_api"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
[dependencies]

‎migration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "migration"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55
publish = false
66

‎migration/src/refactor_platform_rs.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ COMMENT ON COLUMN "refactor_platform"."organizations"."name" IS 'The name of the
9898

9999
COMMENT ON COLUMN "refactor_platform"."organizations"."logo" IS 'A URI pointing to the organization''s logo icon file';
100100

101-
COMMENT ON COLUMN "refactor_platform"."organizations"."slug" IS 'Canonical name for the record. Considered immutable by convention';
101+
COMMENT ON COLUMN "refactor_platform"."organizations"."slug" IS 'A human-friendly canonical name for a record. Considered immutable by convention. Must be unique.';
102102

103103
COMMENT ON COLUMN "refactor_platform"."organizations"."updated_at" IS 'The last date and time fields were changed';
104104

@@ -108,7 +108,7 @@ COMMENT ON COLUMN "refactor_platform"."coaching_relationships"."coach_id" IS 'Th
108108

109109
COMMENT ON COLUMN "refactor_platform"."coaching_relationships"."coachee_id" IS 'The coachee associated with this coaching relationship';
110110

111-
COMMENT ON COLUMN "refactor_platform"."coaching_relationships"."slug" IS 'Canonical name for the record. Considered immutable by convention';
111+
COMMENT ON COLUMN "refactor_platform"."coaching_relationships"."slug" IS 'A human-friendly canonical name for a record. Considered immutable by convention. Must be unique.';
112112

113113
COMMENT ON COLUMN "refactor_platform"."coaching_relationships"."updated_at" IS 'The last date and time fields were changed';
114114

‎service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "service"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

‎web/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "web"
3-
version = "0.1.0"
3+
version = "1.0.0-beta1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)
Please sign in to comment.