Skip to content

Commit 0598b36

Browse files
authored
Merge pull request #29 from stac-utils/version/0.2.8
Version 0.2.8
2 parents 360f112 + e5baf9d commit 0598b36

File tree

7 files changed

+1224
-14
lines changed

7 files changed

+1224
-14
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
### Added
6+
7+
### Changed
8+
9+
### Removed
10+
11+
## Fixed
12+
13+
## [v0.2.8]
14+
15+
### Added
16+
17+
- Type hints to pypgstac that pass mypy checks ([#18](https://github.com/stac-utils/pgstac/pull/18))
18+
19+
### Fixed
20+
21+
- Fixed issue with pypgstac loads which caused some writes to fail ([#18](https://github.com/stac-utils/pgstac/pull/18))
22+
23+
[Unreleased]: <https://github.com/stac-utils/pgstac/compare/v0.2.8..main>
24+
[v0.2.8]: <https://github.com/stac-utils/pgstac/compare/v0.2.7..v0.2.8>

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"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SET SEARCH_PATH TO pgstac, public;
2+
BEGIN;
3+
4+
INSERT INTO migrations (version) VALUES ('0.2.8');
5+
6+
COMMIT;

0 commit comments

Comments
 (0)