Skip to content
This repository was archived by the owner on Aug 8, 2024. It is now read-only.

Commit 10a1bf3

Browse files
author
oborchers
committed
Fixed Gitlab CI / Bumped Version
1 parent e461c98 commit 10a1bf3

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Push latest:
149149

150150
build-package:
151151
only:
152-
- main
152+
- tags
153153
stage: push
154154
image: $CI_REGISTRY_IMAGE:$CI_COMMIT_SHORT_SHA
155155
variables:

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## [1.1.0] - 2022-08-17
5+
### Added
6+
- Added location check to inform about degraded performance from outside US
7+
48
## [1.0.0] - 2022-08-17
59
### Added
610
- Major first release
7-
- Added location check to inform about degraded performance from outside US
811
### Changed
912
- Updated README.md
1013
- `.create` renamed `.run`

oxapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
base_url = None
55
api_key = None
66

7-
__version__ = "1.0.0"
7+
__version__ = "1.1.0"
88
log_level = os.getenv("LOG_LEVEL", "INFO")
99
logger = logging.getLogger(name="OxAPI")
1010
logger.setLevel(level=log_level)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
long_description = Path("README.md").read_text()
1414

1515
NAME = "oxapi"
16-
VERSION = "1.0.0"
16+
VERSION = "1.1.0"
1717
DESCRIPTION = "The Python library for querying the OxAPI"
1818
AUTHOR = "Oxolo GmbH"
1919
AUTHOR_EMAIL = "[email protected]"

0 commit comments

Comments
 (0)