Skip to content

Commit 5207770

Browse files
authored
Merge pull request planetlabs#111 from planetlabs/revert-110-master
Revert "--geo now a required parameter to prevent downloading the wor…
2 parents e3c1ffa + 0e12263 commit 5207770

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

CHANGES.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
1.1.0(2017-08-25)
2-
-------------------------------------
3-
- Prevent download of entire world by making geo required argument.
4-
51
1.0.1 (2017-08-22)
62
-------------------------------------
73
- update the doc strings with defaults

planet/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .utils import write_to_file
2020
from . import filters
2121

22-
__version__ = '1.1.0'
22+
__version__ = '1.0.1'
2323

2424
__all__ = [
2525
ClientV1, APIException, BadQuery, InvalidAPIKey,

planet/scripts/opts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def limit_option(default):
4343
type=num_type, help="Limit the number of items.")
4444

4545

46-
geom_filter = click.option('--geom', type=GeomFilter(), required=True, help=(
46+
geom_filter = click.option('--geom', type=GeomFilter(), help=(
4747
'Specify a geometry filter as geojson.'
4848
))
4949

0 commit comments

Comments
 (0)