diff --git a/CHANGELOG.md b/CHANGELOG.md
index 014aa0d..fa6f498 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- N/A
+## [v1.2.0] - 2024-01-18
+
+### Added
+
+- [#18] New option `ignoreUOMs`, an array of strings that will _not_ be considered units of measure.
+
## [v1.1.1] - 2024-01-15
### Fixed
@@ -143,10 +149,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
[#7]: https://github.com/jakeboone02/parse-ingredient/pull/7
[#8]: https://github.com/jakeboone02/parse-ingredient/pull/8
[#14]: https://github.com/jakeboone02/parse-ingredient/pull/14
+[#18]: https://github.com/jakeboone02/parse-ingredient/pull/18
-[unreleased]: https://github.com/jakeboone02/parse-ingredient/compare/v1.1.0...HEAD
+[unreleased]: https://github.com/jakeboone02/parse-ingredient/compare/v1.2.0...HEAD
+[v1.2.0]: https://github.com/jakeboone02/parse-ingredient/compare/v1.1.1...v1.2.0
+[v1.1.1]: https://github.com/jakeboone02/parse-ingredient/compare/v1.1.0...v1.1.1
[v1.1.0]: https://github.com/jakeboone02/parse-ingredient/compare/v1.0.1...v1.1.0
[v1.0.1]: https://github.com/jakeboone02/parse-ingredient/compare/v1.0.0...v1.0.1
[v1.0.0]: https://github.com/jakeboone02/parse-ingredient/compare/v0.6.0...v1.0.0
diff --git a/README.md b/README.md
index a0221ae..590b210 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ In the browser, all exports including the `parseIngredient` function are availab
```html
diff --git a/ci/src/index.ts b/ci/src/index.ts
index ab22bec..ae5e0e4 100755
--- a/ci/src/index.ts
+++ b/ci/src/index.ts
@@ -20,6 +20,7 @@ const additionalUOMs = {
alternates: ['ounce'],
},
} as const;
+const ignoreUOMs = ['cup', 'cups'] as const;
for (const ex of examples) {
const run = [
@@ -28,6 +29,7 @@ for (const ex of examples) {
parseIngredient(ex, { allowLeadingOf }),
parseIngredient(ex, { normalizeUOM }),
parseIngredient(ex, { additionalUOMs }),
+ parseIngredient(ex, { ignoreUOMs }),
];
gridInnerHTML.push(...run.map(e => `