File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,8 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is (loosely) based on [ Keep a Changelog] ( http://keepachangelog.com/ ) and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
- ## [ v2.4.0] - 2021-11-28
8
- ### Changed
9
-
10
- - Upgraded pystac to 1.1.0 from 0.5.6
11
7
12
- ## [ v2.3.0] - 2021-08-31
8
+ ## [ v2.3.0] - 2021-08-31 - 2021-11-28
13
9
### Added
14
10
15
11
- 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/)
20
16
21
17
### Changed
22
18
19
+ - Upgraded pystac to 1.1.0 from 0.5.6
23
20
- Moved tests for cli options out of test_stac_validator into individual files
24
21
- Moved utilities to utilities.py
25
22
- Moved backend to validate.py
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ test: ## Run the tests
17
17
pytest --mypy stac_validator
18
18
19
19
build-docker : # # Build a Docker container
20
- docker build -t stac_validator:2.4 .0 .
20
+ docker build -t stac_validator:2.3 .0 .
21
21
22
22
build-tox : # # Test stac_validator on multiple Python versions
23
23
docker build -f tox/Dockerfile-tox -t stac_tox .
24
24
25
25
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
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup
4
4
5
- __version__ = "2.4 .0"
5
+ __version__ = "2.3 .0"
6
6
7
7
with open ("README.md" , "r" ) as fh :
8
8
long_description = fh .read ()
29
29
long_description = long_description ,
30
30
long_description_content_type = "text/markdown" ,
31
31
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" ,
33
33
install_requires = [
34
34
"requests>=2.19.1" ,
35
35
"jsonschema>=3.2.0" ,
Original file line number Diff line number Diff line change 1
- __version__ = "2.4 .0"
1
+ __version__ = "2.3 .0"
You can’t perform that action at this time.
0 commit comments