Skip to content

Commit fcb905a

Browse files
authored
Merge pull request #182 from sparkgeo/v2.3.0
V2.3.0
2 parents 85c6c55 + d93a54f commit fcb905a

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [v2.4.0] - 2021-11-28
8-
### Changed
9-
10-
- Upgraded pystac to 1.1.0 from 0.5.6
117

12-
## [v2.3.0] - 2021-08-31
8+
## [v2.3.0] - 2021-08-31 - 2021-11-28
139
### Added
1410

1511
- Added --links option to validate links on format and a valid response
@@ -20,6 +16,7 @@ The format is (loosely) based on [Keep a Changelog](http://keepachangelog.com/)
2016

2117
### Changed
2218

19+
- Upgraded pystac to 1.1.0 from 0.5.6
2320
- Moved tests for cli options out of test_stac_validator into individual files
2421
- Moved utilities to utilities.py
2522
- Moved backend to validate.py

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ test: ## Run the tests
1717
pytest --mypy stac_validator
1818

1919
build-docker: ## Build a Docker container
20-
docker build -t stac_validator:2.4.0 .
20+
docker build -t stac_validator:2.3.0 .
2121

2222
build-tox: ## Test stac_validator on multiple Python versions
2323
docker build -f tox/Dockerfile-tox -t stac_tox .
2424

2525
run: ## Run the Docker Container and enter into bash
26-
docker run -it --entrypoint /bin/bash stac_validator:2.4.0
26+
docker run -it --entrypoint /bin/bash stac_validator:2.3.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

5-
__version__ = "2.4.0"
5+
__version__ = "2.3.0"
66

77
with open("README.md", "r") as fh:
88
long_description = fh.read()
@@ -29,7 +29,7 @@
2929
long_description=long_description,
3030
long_description_content_type="text/markdown",
3131
url="https://github.com/sparkgeo/stac-validator",
32-
download_url="https://github.com/sparkgeo/stac-validator/archive/v2.4.0.tar.gz",
32+
download_url="https://github.com/sparkgeo/stac-validator/archive/v2.3.0.tar.gz",
3333
install_requires=[
3434
"requests>=2.19.1",
3535
"jsonschema>=3.2.0",

stac_validator/__init__.py

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

0 commit comments

Comments
 (0)