Skip to content

Commit 6c1042b

Browse files
remove useless file (#553)
1 parent cbcf0b8 commit 6c1042b

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,11 @@ jobs:
198198
steps:
199199
- uses: actions/checkout@v3
200200

201+
# Let's wait a bit to make sure Pypi is up to date
202+
- name: Sleep for 120 seconds
203+
run: sleep 120s
204+
shell: bash
205+
201206
- name: Configure AWS credentials
202207
uses: aws-actions/configure-aws-credentials@v1
203208
with:

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## 0.8.1 (2022-12-01)
4+
5+
### titiler.core
6+
7+
* remove useless `titiler.core.version` file
8+
39
## 0.8.0 (2022-12-01)
410

511
* remove python 3.7 support

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open("README.md") as f:
66
long_description = f.read()
77

8-
__version__ = "0.8.0"
8+
__version__ = "0.8.1"
99

1010
inst_reqs = [
1111
f"titiler.core=={__version__}",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""titiler.application"""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.8.1"

src/titiler/core/titiler/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.core"""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.8.1"
44

55
from . import dependencies, errors, factory, routing # noqa
66
from .factory import ( # noqa

src/titiler/core/titiler/core/version.py

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""titiler.mosaic"""
22

3-
__version__ = "0.8.0"
3+
__version__ = "0.8.1"
44

55
from . import errors, factory # noqa
66
from .factory import MosaicTilerFactory # noqa

0 commit comments

Comments
 (0)