Skip to content

Commit 4bbe385

Browse files
committed
Bump version after #1 (fixing typo on sanityCollapse)
1 parent 31c3c69 commit 4bbe385

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.4] - 2020-10-23
9+
10+
### Fixed
11+
- Typo in the `sanityCollapse` snippet - [Jayne Mast](https://github.com/jayne-mast)
12+
813
## [0.1.0] - 2020-10-23
914

1015
- Initial release with a small set of snippets 🎉

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Every snippets starts with either `sanity(...)` or `groq(...)`, so you know they
1717
- **Sanity Optional Encouraged** (`sanityOptionalEncouraged`): Add a cue that a field is optional, but encourage writing it
1818
- **Sanity Tip description** (`sanityTip`): Add a tip as a field's description
1919
- **Sanity Fieldset** (`sanityFieldset`): Add fieldsets to a sanity object / document
20-
- **Sanity Collapse Field** (`sanityCollapse`): Make a given field collapsible
20+
- **Sanity Collapse Field** (`sanityCollapse`): Make a given object field collapsible to help editors scroll less through the document
2121
- **Sanity Required** (`sanityRequired`): Make a given field required
2222
- **Sanity Array Validation (min & max)** (`sanityArrValidation`): Validate an array field based on its length
2323
- **Sanity Basic Array** (`sanityArrFld`): Create a basic array field in Sanity

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Sanity.io snippets",
44
"publisher": "hdoro",
55
"description": "Speed up your Sanity.io development with snippets tailored for building schemas and desk structures ✨",
6-
"version": "0.1.3",
6+
"version": "0.1.4",
77
"author": {
88
"email": "opensource@hdoro.dev",
99
"name": "Henrique Doro",

snippets/schema.code-snippets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
]
6666
},
6767
"Sanity Collapse Field": {
68-
"description": "Make a given field required",
68+
"description": "Make a given object field collapsible to help editors scroll less through the document",
6969
"prefix": "sanityCollapse",
7070
"body": ["options: { collapsible: true, ${0:collapsed: false,}},"]
7171
},

0 commit comments

Comments
 (0)