Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
tibetsprague committed Mar 4, 2023
2 parents 564ac7c + a257e68 commit cf3ba6b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [5.3.6] - 2023-03-04

### Added
- New product categories for farms: grains, other_row_crops

## [5.3.5] - 2023-02-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion api/graphql/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ type Query {
Example object
{
farmType: 'wholesale_farm, directsale_farm',
productCategories: 'grains_other', 'vegetables',
productCategories: 'grains', 'vegetables',
certOrManagementPlan: 'american_grassfed'
}
"""
Expand Down
8 changes: 8 additions & 0 deletions lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,14 @@ exports.PREFERRED_CONTACT_METHODS = [
]

exports.PRODUCT_CATAGORIES = [
{
value: 'grains',
label: 'Grains'
},
{
value: 'other_row_crops',
label: 'Other row crops'
},
{
value: 'grains_other',
label: 'Grains and other row crops'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Tibet Sprague <tibet@hylo.com>",
"license": "GNU AFFERO GENERAL PUBLIC LICENSE v3",
"private": true,
"version": "5.3.5",
"version": "5.3.6",
"repository": {
"type": "git",
"url": "git://github.com/Hylozoic/hylo-node.git"
Expand Down

0 comments on commit cf3ba6b

Please sign in to comment.