Skip to content

Commit

Permalink
release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cofiem committed Apr 23, 2024
1 parent 2a0093b commit ccbd025
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
12 changes: 3 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ Upload archives to Test PyPI first.
python -X dev -m twine upload --repository testpypi dist/*
```

When uploading:

- for username, use `__token__`
- for password, create a token at https://test.pypi.org/manage/account/#api-tokens
When uploading use a token created at https://test.pypi.org/manage/account/#api-tokens

Go to the [test project page](https://test.pypi.org/project/server-monitor-agent) and check that it looks ok.

Expand All @@ -54,7 +51,7 @@ source .venv-test/bin/activate
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade -r requirements.txt

SERVER_MONITOR_AGENT_VERSION='0.4.0'
SERVER_MONITOR_AGENT_VERSION='0.5.0'
pip install --index-url https://test.pypi.org/simple/ --no-deps server-monitor-agent==$SERVER_MONITOR_AGENT_VERSION
```

Expand All @@ -75,10 +72,7 @@ If the package seems to work as expected, upload it to the live PyPI.
python -X dev -m twine upload dist/*
```

When uploading:

- for username, use `__token__`
- for password, create a token at https://pypi.org/manage/account/#api-tokens
When uploading use a token created at https://pypi.org/manage/account/#api-tokens

Go to the [live project page](https://pypi.org/project/server-monitor-agent) and check that it looks ok.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.5.0
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from server_monitor_agent.agent import common
from server_monitor_agent.entry import main

expected_version = "0.4.0"
expected_version = "0.5.0"

if sys.version_info.minor >= 10:
help_phrase_options = "options:"
Expand Down

0 comments on commit ccbd025

Please sign in to comment.