-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: FedericoBruzzone <[email protected]>
- Loading branch information
1 parent
940276e
commit ff61dd0
Showing
8 changed files
with
38 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
```bash | ||
git add --all | ||
git commit -sm "Release v1.0.0" | ||
git push origin main | ||
|
||
git tag -l | xargs git tag -d | ||
git fetch --tags | ||
git tag v1.0.0 | ||
git push origin v1.0.0 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tdlib-rs-gen" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = [ | ||
"Federico Bruzzone <[email protected]>", | ||
"Andrea Longoni", | ||
|
@@ -20,4 +20,4 @@ keywords = [ | |
description = "Rust code generator from TDLib's API definitions." | ||
|
||
[dependencies] | ||
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.0" } | ||
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tdlib-rs-parser" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = [ | ||
"Federico Bruzzone <[email protected]>", | ||
"Andrea Longoni", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tdlib-rs" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = [ | ||
"Federico Bruzzone <[email protected]>", | ||
"Andrea Longoni", | ||
|
@@ -12,6 +12,7 @@ repository = "https://github.com/FedericoBruzzone/tdlib-rs" | |
documentation = "https://docs.rs/tdlib-rs" | ||
keywords = ["telegram", "tdlib", "tdjson", "tdlib-rs", "telegram-api"] | ||
description = "Rust wrapper around the Telegram Database Library." | ||
readme = "README.md" | ||
|
||
[package.metadata.docs.rs] | ||
features = ["docs", "bots-only-api"] | ||
|
@@ -40,8 +41,8 @@ serde_json = "1.0" | |
serde_with = "3.2" | ||
|
||
[build-dependencies] | ||
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.0" } | ||
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.0" } | ||
tdlib-rs-gen = { path = "../tdlib-rs-gen", version = "1.0.1" } | ||
tdlib-rs-parser = { path = "../tdlib-rs-parser", version = "1.0.1" } | ||
system-deps = { version = "6", optional = true } | ||
reqwest = { version = "0.12.4", features = ["blocking"], optional = true } | ||
zip = { version = "2.0.0", optional = true } | ||
|