Skip to content

Commit 597e218

Browse files
Update to changelog and how_to_release
Change-Id: I5f34175b5ccca33d72455eb0b3095624ad648c19
1 parent 51c6735 commit 597e218

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.7.1
2+
## Misc
3+
* Fix readme sample
4+
* Update Pipfile.lock
5+
16
# Version 0.7
27
## Bugfixes
38
* WG-65726 Unreal Hang due to Waapi Call through Python (UE5.1)
@@ -43,4 +48,4 @@ It is also easy for users to specify a custom strategy by implementing the `Call
4348
* Added check for None decoupler, otherwise null dereferencing when connection failed
4449

4550
## Misc
46-
* Updated pipfile to latest dependency versions
51+
* Updated pipfile to latest dependency versions

HOW_TO_RELEASE

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,27 @@ To test the package installs correctly, first package it with the following comm
3333
python3 -m build --wheel --sdist .
3434
```
3535

36-
Then, upload to the `pypitest` to make sure the install process works:
36+
Then, upload to the `pypitest` to make sure the install process works.
37+
You will need to first log into test.pypi.org, enable 2-factor authentication and generate an API token at
38+
https://test.pypi.org/manage/account/token/ (or go to your Account Settings, scroll down to the "API tokens" section and
39+
click on "Add API token"). Make it a project-scope token only to waapi-client.
40+
41+
Once this is done, copy the token and run:
3742

3843
```
3944
# Run from clone root, first install the `twine` package if you don't have it
4045
python3 -m twine upload -r testpypi dist/*
4146
```
4247

48+
When asked for a username, enter `__token__` and paste the token you generated at password input.
49+
4350
If successful, you can validate the package installs correctly by doing:
4451
```
4552
python3 -m pip install -i https://test.pypi.org/simple/ waapi-client
4653
```
4754

4855
## Upload on the real server
49-
You can now upload to the real server:
56+
You can do the same as the above on the real server:
5057

5158
```
5259
python3 -m twine upload dist/*

0 commit comments

Comments
 (0)