Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Release 1.8.0 #357

Merged
merged 2 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Releases are accomplished through GitHub Actions.

To initiate a release, create a manual tag use the following steps. The `<MAJOR>.<MINOR>.<PATCH>` values **MUST** follow semantic versioning.

git tag v<MAJOR>.<MINOR>.<PATCH>
git push origin v<MAJOR>.<MINOR>.<PATCH>
git tag <MAJOR>.<MINOR>.<PATCH>
git push origin <MAJOR>.<MINOR>.<PATCH>

Once pushed, a GitHub Action will be trigged. This action with publish the release to [PyPi](https://pypi.org/project/rsconnect-jupyter/) using the specified version.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ Pygments>=2.7.4
jinja2>=2.11.3
bleach>=3.3.0
cryptography>=3.2
rsconnect-python>=1.15.0b1
rsconnect-python>=1.15.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ project_urls =

[options]
install_requires =
rsconnect-python>=1.15.0b1
rsconnect-python>=1.15.0
notebook>=6.1.5,<7.0.0
nbformat
nbconvert>=5.6.1
Expand Down