Skip to content

Commit c293663

Browse files
committed
Version 0.14.0
1 parent dc3858c commit c293663

16 files changed

Lines changed: 91 additions & 91 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_server"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -31,18 +31,18 @@ members = [
3131
]
3232

3333
[dependencies]
34-
lemmy_api = { version = "=0.14.0-rc.2", path = "./crates/api" }
35-
lemmy_api_crud = { version = "=0.14.0-rc.2", path = "./crates/api_crud" }
36-
lemmy_apub = { version = "=0.14.0-rc.2", path = "./crates/apub" }
37-
lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "./crates/apub_lib" }
38-
lemmy_utils = { version = "=0.14.0-rc.2", path = "./crates/utils" }
39-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "./crates/db_schema" }
40-
lemmy_db_views = { version = "=0.14.0-rc.2", path = "./crates/db_views" }
41-
lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "./crates/db_views_moderator" }
42-
lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "./crates/db_views_actor" }
43-
lemmy_api_common = { version = "=0.14.0-rc.2", path = "crates/api_common" }
44-
lemmy_websocket = { version = "=0.14.0-rc.2", path = "./crates/websocket" }
45-
lemmy_routes = { version = "=0.14.0-rc.2", path = "./crates/routes" }
34+
lemmy_api = { version = "=0.14.0", path = "./crates/api" }
35+
lemmy_api_crud = { version = "=0.14.0", path = "./crates/api_crud" }
36+
lemmy_apub = { version = "=0.14.0", path = "./crates/apub" }
37+
lemmy_apub_lib = { version = "=0.14.0", path = "./crates/apub_lib" }
38+
lemmy_utils = { version = "=0.14.0", path = "./crates/utils" }
39+
lemmy_db_schema = { version = "=0.14.0", path = "./crates/db_schema" }
40+
lemmy_db_views = { version = "=0.14.0", path = "./crates/db_views" }
41+
lemmy_db_views_moderator = { version = "=0.14.0", path = "./crates/db_views_moderator" }
42+
lemmy_db_views_actor = { version = "=0.14.0", path = "./crates/db_views_actor" }
43+
lemmy_api_common = { version = "=0.14.0", path = "crates/api_common" }
44+
lemmy_websocket = { version = "=0.14.0", path = "./crates/websocket" }
45+
lemmy_routes = { version = "=0.14.0", path = "./crates/routes" }
4646
diesel = "1.4.8"
4747
diesel_migrations = "1.4.0"
4848
chrono = { version = "0.4.19", features = ["serde"] }

crates/api/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_api"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -13,15 +13,15 @@ path = "src/lib.rs"
1313
doctest = false
1414

1515
[dependencies]
16-
lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
17-
lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
18-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
19-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
20-
lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
21-
lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
22-
lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
23-
lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
24-
lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
16+
lemmy_apub = { version = "=0.14.0", path = "../apub" }
17+
lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
18+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
19+
lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
20+
lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
21+
lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
22+
lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
23+
lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
24+
lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
2525
diesel = "1.4.8"
2626
bcrypt = "0.10.1"
2727
chrono = { version = "0.4.19", features = ["serde"] }

crates/api_common/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_api_common"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
1313
doctest = false
1414

1515
[dependencies]
16-
lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
17-
lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
18-
lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
19-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
20-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
16+
lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
17+
lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
18+
lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
19+
lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
20+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
2121
serde = { version = "1.0.130", features = ["derive"] }
2222
log = "0.4.14"
2323
diesel = "1.4.8"

crates/api_crud/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[package]
22
name = "lemmy_api_crud"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
77
homepage = "https://join-lemmy.org/"
88
documentation = "https://join-lemmy.org/docs/en/index.html"
99

1010
[dependencies]
11-
lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
12-
lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
13-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
14-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
15-
lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
16-
lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
17-
lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
18-
lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
19-
lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
11+
lemmy_apub = { version = "=0.14.0", path = "../apub" }
12+
lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
13+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
14+
lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
15+
lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
16+
lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
17+
lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
18+
lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
19+
lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
2020
diesel = "1.4.8"
2121
bcrypt = "0.10.1"
2222
chrono = { version = "0.4.19", features = ["serde"] }

crates/apub/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_apub"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -13,13 +13,13 @@ path = "src/lib.rs"
1313
doctest = false
1414

1515
[dependencies]
16-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
17-
lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
18-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
19-
lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
20-
lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
21-
lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
22-
lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
16+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
17+
lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
18+
lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
19+
lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
20+
lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
21+
lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
22+
lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
2323
diesel = "1.4.8"
2424
activitystreams = "0.7.0-alpha.11"
2525
bcrypt = "0.10.1"

crates/apub_lib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "lemmy_apub_lib"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
77
homepage = "https://join-lemmy.org/"
88
documentation = "https://join-lemmy.org/docs/en/index.html"
99

1010
[dependencies]
11-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
12-
lemmy_apub_lib_derive = { version = "=0.14.0-rc.2", path = "../apub_lib_derive" }
11+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
12+
lemmy_apub_lib_derive = { version = "=0.14.0", path = "../apub_lib_derive" }
1313
activitystreams = "0.7.0-alpha.11"
1414
serde = { version = "1.0.130", features = ["derive"] }
1515
async-trait = "0.1.51"

crates/apub_lib_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_apub_lib_derive"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"

crates/db_schema/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_db_schema"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -11,8 +11,8 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
1111
doctest = false
1212

1313
[dependencies]
14-
lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
15-
lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
14+
lemmy_utils = { version = "=0.14.0", path = "../utils" }
15+
lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
1616
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
1717
diesel_migrations = "1.4.0"
1818
chrono = { version = "0.4.19", features = ["serde"] }

crates/db_views/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lemmy_db_views"
3-
version = "0.14.0-rc.2"
3+
version = "0.14.0"
44
edition = "2018"
55
description = "A link aggregator for the fediverse"
66
license = "AGPL-3.0"
@@ -11,7 +11,7 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
1111
doctest = false
1212

1313
[dependencies]
14-
lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
14+
lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
1515
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
1616
serde = { version = "1.0.130", features = ["derive"] }
1717
log = "0.4.14"

0 commit comments

Comments
 (0)