-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully automatic release versioning (#197)
* Tweak default release-drafter config * Bump copyright * Bump release version * Moving versioning responsibility into GitHub Actions * Modernizing RELEASING.md
- Loading branch information
1 parent
a03fc57
commit e6bd7a9
Showing
6 changed files
with
29 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Cutting new releases is fully managed by GitHub Actions. | ||
Version numbers do not need to be set in files prior to releasing, as they are incorporated on the fly. | ||
|
||
1. Navigate to https://github.com/replit/replit-py/releases | ||
1. Find the latest `Draft` release, click `Edit` | ||
1. Verify that the draft looks like what you'd expect | ||
1. Scroll to the bottom and click `Publish` | ||
1. Navigate to [`Upload Python Package`](https://github.com/replit/replit-py/actions/workflows/python-publish.yml) and watch your release |
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 @@ | ||
[tool.poetry] | ||
name = "replit" | ||
version = "3.5.0" | ||
version = "0.0.0" # Set by GitHub Actions | ||
description = "A library for interacting with features of repl.it" | ||
authors = ["Repl.it <[email protected]>", "mat <[email protected]>", "kennethreitz <[email protected]>", "Scoder12 <[email protected]>", "AllAwesome497", ] | ||
license = "ISC" | ||
|