Skip to content

Commit

Permalink
Update token and resync version number (#1584)
Browse files Browse the repository at this point in the history
## Description

Replace expired GitHub token and version number catch up.


- [ ] I have reviewed the [Guidelines for Contributing](CONTRIBUTING.md)
and the [Code of Conduct](CODE_OF_CONDUCT.md).
  • Loading branch information
richard-rogers authored Nov 5, 2024
1 parent db92234 commit f247ed2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v4.1.1
with:
token: ${{ secrets.VERSION_UPDATE }}
token: ${{ secrets.VERSION_UPDATE_WHYLOGS }}
commit-message: Update version to ${{ env.VERSION }}
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Expand Down
2 changes: 1 addition & 1 deletion python/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.0
current_version = 1.6.1
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
Expand Down
2 changes: 1 addition & 1 deletion python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ src.proto.dir := ../proto/src
src.proto := $(shell find $(src.proto.dir) -type f -name "*.proto")
src.proto.v0.dir := ../proto/v0
src.proto.v0 := $(shell find $(src.proto.v0.dir) -type f -name "*.proto")
version := 1.6.0
version := 1.6.1

dist.dir := dist
egg.dir := .eggs
Expand Down
2 changes: 1 addition & 1 deletion python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
print("Pandoc is required to build our documentation.")
sys.exit(1)

version = "1.6.0"
version = "1.6.1"

project = "whylogs"
author = "whylogs developers"
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "whylogs"
version = "1.6.0"
version = "1.6.1"
description = "Profile and monitor your ML data pipeline end-to-end"
authors = ["WhyLabs.ai <support@whylabs.ai>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion python/tests/smoketest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
not a development environment.
"""

current_version = "1.6.0"
current_version = "1.6.1"


def test_package_version() -> None:
Expand Down

0 comments on commit f247ed2

Please sign in to comment.