Skip to content

Commit cf3ba6b

Browse files
committed
Merge branch 'dev'
2 parents 564ac7c + a257e68 commit cf3ba6b

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [5.3.6] - 2023-03-04
10+
11+
### Added
12+
- New product categories for farms: grains, other_row_crops
13+
914
## [5.3.5] - 2023-02-26
1015

1116
### Added

api/graphql/schema.graphql

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type Query {
5555
Example object
5656
{
5757
farmType: 'wholesale_farm, directsale_farm',
58-
productCategories: 'grains_other', 'vegetables',
58+
productCategories: 'grains', 'vegetables',
5959
certOrManagementPlan: 'american_grassfed'
6060
}
6161
"""

lib/constants.js

+8
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,14 @@ exports.PREFERRED_CONTACT_METHODS = [
446446
]
447447

448448
exports.PRODUCT_CATAGORIES = [
449+
{
450+
value: 'grains',
451+
label: 'Grains'
452+
},
453+
{
454+
value: 'other_row_crops',
455+
label: 'Other row crops'
456+
},
449457
{
450458
value: 'grains_other',
451459
label: 'Grains and other row crops'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Tibet Sprague <[email protected]>",
66
"license": "GNU AFFERO GENERAL PUBLIC LICENSE v3",
77
"private": true,
8-
"version": "5.3.5",
8+
"version": "5.3.6",
99
"repository": {
1010
"type": "git",
1111
"url": "git://github.com/Hylozoic/hylo-node.git"

0 commit comments

Comments
 (0)