Skip to content

Commit 335f1ac

Browse files
authored
feat(url): fixed the repo urls (#86)
* fix(url): fixed the repo urls Signed-off-by: Ujjwal Kumar <[email protected]> * Update .releaserc Signed-off-by: Ujjwal Kumar <[email protected]> --------- Signed-off-by: Ujjwal Kumar <[email protected]>
1 parent ff6e9ce commit 335f1ac

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install release dependencies
4242
if: github.ref == 'refs/heads/master' && matrix.python-version == '3.8'
4343
run: |
44-
pip install bump-my-version build twine
44+
pip install bumpversion build twine
4545
sudo npm install -g semantic-release \
4646
@semantic-release/changelog \
4747
@semantic-release/exec \

.releaserc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
[
88
"@semantic-release/exec",
99
{
10-
"prepareCmd": "bump-my-version bump --allow-dirty --current-version ${lastRelease.version} --new-version ${nextRelease.version} patch"
10+
"prepareCmd": "bumpversion --config-file pyproject.toml --allow-dirty --new-version ${nextRelease.version} patch"
1111
}
1212
],
1313
[
1414
"@semantic-release/git",
1515
{
16+
"assets": ["CHANGELOG.md", "pyproject.toml", "ibm_vpc/version.py", "README.md"],
1617
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes}",
1718
"gitUserName": "uibm",
1819
"gitUserEmail": "[email protected]"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ dependencies = [
3333
]
3434

3535
[project.urls]
36-
Repository = "https://github.ibm.com/ibmcloud/vpc-python-sdk"
37-
Documentation = "https://github.ibm.com/ibmcloud/vpc-python-sdk/blob/master/README.md"
38-
Issues = "https://github.ibm.com/ibmcloud/vpc-python-sdk/issues"
39-
Contributing = "https://github.ibm.com/ibmcloud/vpc-python-sdk/blob/master/CONTRIBUTING.md"
40-
License = "https://github.ibm.com/ibmcloud/vpc-python-sdk/blob/master/LICENSE"
36+
Repository = "https://github.com/IBM/vpc-python-sdk"
37+
Documentation = "https://github.com/IBM/vpc-python-sdk/blob/master/README.md"
38+
Issues = "https://github.com/IBM/vpc-python-sdk/issues"
39+
Contributing = "https://github.com/IBM/vpc-python-sdk/blob/master/CONTRIBUTING.md"
40+
License = "https://github.com/IBM/vpc-python-sdk/blob/master/LICENSE"
4141

4242
[project.optional-dependencies]
4343
dev = [

0 commit comments

Comments
 (0)