Skip to content

Commit

Permalink
Bump json schema version to 0.4.0 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored May 25, 2022
1 parent fe87513 commit 2615675
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Binary file modified examples/example.parquet
Binary file not shown.
3 changes: 1 addition & 2 deletions examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import geopandas
import pyarrow as pa
import pyarrow.parquet as pq
import pyproj

HERE = pathlib.Path(__file__).parent

Expand All @@ -24,7 +23,7 @@


metadata = {
"version": "0.3.0",
"version": "0.4.0",
"primary_column": "geometry",
"columns": {
"geometry": {
Expand Down
2 changes: 1 addition & 1 deletion examples/example_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@
}
},
"primary_column": "geometry",
"version": "0.3.0"
"version": "0.4.0"
}
}
2 changes: 1 addition & 1 deletion format-specs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"properties": {
"version": {
"type": "string",
"pattern": "^0\\.3\\.[0-9]+$",
"const": "0.4.0",
"description": "The version of the geoparquet metadata standard used when writing."
},
"primary_column": {
Expand Down

0 comments on commit 2615675

Please sign in to comment.