Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Nov 11, 2024
1 parent 257c399 commit e4970c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v6.0.1

- :bug: Fix array type of InputFeatureCollection

### v6.0.0

- :rocket: Change `submit(FeatureCollection)` to `submit(InputFeatureCollection)`
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ FormatRegistry.Set('uuid', formats.IsUuid);

export const InputFeatureCollection = Type.Object({
type: Type.Literal('FeatureCollection'),
features: Feature.InputFeature
features: Type.Array(Feature.InputFeature)
})

export function env(current: string) {
Expand Down

0 comments on commit e4970c5

Please sign in to comment.