-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from forged-org/release/prepare
Bump versions
- Loading branch information
Showing
5 changed files
with
36 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,33 @@ | ||
# Forged Tooling | ||
|
||
* `forged-rs` is a Rust client for Forged.dev operations. | ||
* `forged-cli` is a CLI tool (written in Rust) to interract with the forged.dev tooling. | ||
- `forged-rs` is a Rust client for Forged.dev operations. | ||
- `forged-cli` is a CLI tool (written in Rust) to interract with the forged.dev tooling. | ||
|
||
## Release a new version | ||
|
||
### Rust | ||
|
||
``` | ||
cd forged-rs | ||
# Bump crate version (make sure API incompatibilities are handled properly) | ||
cargo publish | ||
``` | ||
|
||
# Python | ||
|
||
``` | ||
# Install the tooling to upload to pip | ||
python -m pip install build twine | ||
``` | ||
|
||
``` | ||
cd forged-py | ||
python -m build | ||
twine check dist/* | ||
# Upload to TestPyPi to check | ||
twine upload -r testpypi dist/* | ||
# Upload to rea PyPi to release | ||
twine upload -r pypi dist/* | ||
``` |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "forged-client" | ||
description = "Forged.dev Client library" | ||
version = "0.0.1" | ||
version = "0.1.0" | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Ryan Summers", email = "[email protected]" }, | ||
|
@@ -20,9 +20,7 @@ classifiers = [ | |
"Topic :: System :: Hardware", | ||
] | ||
keywords = ["api", "client", "database", "embedded"] | ||
dependencies = [ | ||
"gql[all]" | ||
] | ||
dependencies = ["gql[all]"] | ||
|
||
[project.urls] | ||
Homepage = "https://forged.dev" |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "forged" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = [ | ||
|