Skip to content

Commit 6c73aa3

Browse files
committed
Update version to 0.2.8
1 parent 360f112 commit 6c73aa3

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

pypgstac/pypgstac/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.7"
1+
__version__ = "0.2.8"

pypgstac/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "pypgstac"
3-
version = "0.2.7"
3+
version = "0.2.8"
44
description = ""
55
authors = ["David Bitner <[email protected]>"]
66
keywords = ["stac", "asyncpg"]
77
readme = "README"
88
homepage = "https://github.com/stac-utils/pgstac"
99
repository = "https://github.com/stac-utils/pgstac"
1010
exclude = ["pypgstac/migrations/*.sql"]
11-
include = ["pypgstac/migrations/pgstac*0.2.7.sql"]
11+
include = ["pypgstac/migrations/pgstac*0.2.8.sql"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"

pypgstac/setup.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,8 @@
66

77
package_data = \
88
{'': ['*'],
9-
'pypgstac': ['migrations/pgstac.0.2.4-0.2.7.sql',
10-
'migrations/pgstac.0.2.4-0.2.7.sql',
11-
'migrations/pgstac.0.2.4-0.2.7.sql',
12-
'migrations/pgstac.0.2.5-0.2.7.sql',
13-
'migrations/pgstac.0.2.5-0.2.7.sql',
14-
'migrations/pgstac.0.2.5-0.2.7.sql',
15-
'migrations/pgstac.0.2.7.sql',
16-
'migrations/pgstac.0.2.7.sql',
17-
'migrations/pgstac.0.2.7.sql']}
9+
'pypgstac': ['migrations/pgstac.0.2.5-0.2.8.sql',
10+
'migrations/pgstac.0.2.8.sql']}
1811

1912
install_requires = \
2013
['asyncio>=3.4.3,<4.0.0',
@@ -28,7 +21,7 @@
2821

2922
setup_kwargs = {
3023
'name': 'pypgstac',
31-
'version': '0.2.7',
24+
'version': '0.2.8',
3225
'description': '',
3326
'long_description': 'Python tools for working with PGStac\n',
3427
'author': 'David Bitner',

sql/999_version.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SET SEARCH_PATH TO pgstac, public;
22

3-
INSERT INTO migrations (version) VALUES ('0.2.7');
3+
INSERT INTO migrations (version) VALUES ('0.2.8');

0 commit comments

Comments
 (0)