@larsgw/formica 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.7.1](https://github.com/identification-resources/formica/compare/v0.7.0...v0.7.1) (2025-03-25)
2
+
3
+
4
+ ### Features
5
+
6
+ * **resources:** add 'subphylum' rank ([8b5243b](https://github.com/identification-resources/formica/commit/8b5243bfd79b6486c613ca1178f1e1c9ec3f43a4))
7
+
8
+
9
+
1
10
  # [0.7.0](https://github.com/identification-resources/formica/compare/v0.6.8...v0.7.0) (2025-03-14)
2
11
 
3
12
 
@@ -17,6 +17,7 @@ var resource_1 = require("./resource");
17
17
  var diff_resource_1 = require("./diff-resource");
18
18
  var RANKS = [
19
19
  'phylum',
20
+ 'subphylum',
20
21
  'class',
21
22
  'infraclass',
22
23
  'superorder',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@larsgw/formica",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "SDK and tools for data from the Library of Identification Resources",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -4,6 +4,7 @@ import { createDiff, ResourceDiffType } from './diff-resource'
4
4
 
5
5
  const RANKS: Rank[] = [
6
6
  'phylum',
7
+ 'subphylum',
7
8
  'class',
8
9
  'infraclass',
9
10
  'superorder',