Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit d0cf21d

Browse files
committed
version bump because I botched the previous one
1 parent 34d89cf commit d0cf21d

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/python.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,16 @@ jobs:
102102
- name: Run image
103103
uses: abatilo/[email protected]
104104

105+
- name: Run build
106+
run: |
107+
poetry build
108+
105109
- name: Dry run publish
106110
run: |
107111
poetry config pypi-token.pypi ${{ secrets.PYPI_DEPLOY_TOKEN }}
108-
poetry publish --build --dry-run
112+
poetry publish --dry-run
109113
110114
- name: Actual publish
111115
run: |
112116
poetry config pypi-token.pypi ${{ secrets.PYPI_DEPLOY_TOKEN }}
113-
poetry publish --build
117+
poetry publish

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.1.0
1+
# v0.1.1
22

33
This is the initial release. Features include:
44

linkedin_messaging/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .linkedin import ChallengeException, LinkedInMessaging
22

33
__title__ = "linkedin_messaging"
4-
__version__ = "0.1.0"
4+
__version__ = "0.1.1"
55
__description__ = "An unofficial API for interacting with LinkedIn Messaging"
66

77
__license__ = "MIT"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "linkedin_messaging"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "An unofficial API for interacting with LinkedIn Messaging"
55
authors = ["Sumner Evans <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)