Skip to content

Commit 0745ccb

Browse files
committed
Update changelogs and versions
1 parent 3b14a76 commit 0745ccb

File tree

29 files changed

+121
-25
lines changed

29 files changed

+121
-25
lines changed

packages/api-types/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
and this project adheres to
7+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8+
9+
## [1.1.0] - 2025-04-09
10+
11+
- Add types for `Environment`, `Lithology`, `MacrostratRef`, and
12+
`ColumnGeoJSONRecord`
13+
- Improve types for `UnitLong`
14+
- Add a `UnitLongFull` type to allow access to deprecated fields
715

816
## [1.0.0] - 2025-02-14
917

10-
First public release of the API types package, including types for columns, units and measurements
11-
for Macrostrat's v2 API.
18+
First public release of the API types package, including types for columns,
19+
units and measurements for Macrostrat's v2 API.

packages/api-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/api-types",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Type definitions for Macrostrat's API",
55
"main": "./src/index.d.ts",
66
"types": "./src/index.d.ts",

packages/color-utils/CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,23 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
and this project adheres to
7+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
78

8-
## [1.0.0] - 2024-10-26
9+
## [1.1.0] - 2025-04-09
910

10-
- First public release of the `@macrostrat/color-utils` library
11-
- Added `asChromaColor`, `getColorPair`, and `toRGBAString` functions
11+
- Add `getLuminanceAdjustedColorScheme` to get a set of colors with adjusted
12+
luminance for a given base and light and dark themes, including the following
13+
colors:
14+
`{mainColor, backgroundColor, secondaryColor, secondaryBackgroundColor}`.
15+
- Add `getCSSVariable` and `asCSSVariables` functions
1216

1317
## [1.0.1] - 2025-02-14
1418

1519
- Fix packaging issues
1620
- Update typings
21+
22+
## [1.0.0] - 2024-10-26
23+
24+
- First public release of the `@macrostrat/color-utils` library
25+
- Added `asChromaColor`, `getColorPair`, and `toRGBAString` functions

packages/color-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/color-utils",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Color utility functions",
55
"type": "module",
66
"main": "dist/index.js",

packages/color-utils/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function toRGBAString(color: Color): string {
5656
}
5757

5858
interface ColorScheme {
59-
textColor: string;
59+
mainColor: string;
6060
backgroundColor: string;
6161
secondaryColor: string;
6262
secondaryBackgroundColor: string;
@@ -83,7 +83,7 @@ export function getLuminanceAdjustedColorScheme(
8383
const secondaryColor = _color?.luminance(0.5).css();
8484

8585
return {
86-
textColor: mainColor,
86+
mainColor,
8787
backgroundColor,
8888
secondaryColor,
8989
secondaryBackgroundColor,

packages/column-components/CHANGELOG.md

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

7+
## [1.1.0] - 2025-04-09
8+
9+
- Improve configurability of `AgeAxis` component
10+
- Add an `ORDINAL` option to the `ColumnAxisType` enum
11+
- Standardize generation of UUIDs to help with server rendering
12+
- Improve `ClippingFrame` component to allow clipping to be turned off, and to
13+
allow different clipping shapes
14+
- Improve Typescript types
15+
- Switch many components from class-based to functional
16+
- Remove some instances of `findDOMNode`
17+
718
## [1.0.3] - 2025-02-16
819

920
Improve age axis styles

packages/column-components/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/column-components",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"description": "React rendering primitives for stratigraphic columns",
55
"keywords": [
66
"geology",
@@ -52,7 +52,6 @@
5252
"@macrostrat/hyper": "^3.0.6",
5353
"@macrostrat/timescale": "workspace:^",
5454
"@macrostrat/ui-components": "workspace:^",
55-
"@visx/axis": "^3.12.0",
5655
"chroma-js": "^2.1.0",
5756
"classnames": "^2.2.6",
5857
"d3-axis": "^3.0.0",

packages/column-views/CHANGELOG.md

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

7+
## [2.0.0] - 2025-04-09
8+
9+
Major update for columns and correlation diagrams:
10+
11+
- Add Mapbox-based column selection and correlation-line selection maps
12+
- Add `ColoredUnitComponent` based on mixing unit colors by lithology
13+
- Fully integrated management of composite column scales, allowing for much more
14+
flexible column creation
15+
- Added the ability to have zig-zag cutoffs when units overflow the time bounds
16+
of the column
17+
- Added a unified `MacrostratDataProvider` that allows frontend caching of data
18+
dictionaries in the UI
19+
- Major improvements to columns and styling
20+
21+
This release will support rendering of stratigraphic columns in Rockd and
22+
Macrostrat.
23+
724
## [1.0.3] - 2025-03-08
825

926
Export `UnitDetailsPanel`

packages/column-views/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@macrostrat/column-views",
3-
"version": "1.0.3",
3+
"version": "2.0.0",
44
"description": "Data views for Macrostrat stratigraphic columns",
55
"type": "module",
66
"source": "src/index.ts",

packages/data-components/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.1.0] - 2025-04-09
4+
5+
- Added fields for data and tags, which can be used for rendering lists of
6+
complex lithology, interval, and other information from Macrostrat.
7+
- Added helper components for comma-separated lists
8+
39
## [0.0.6] - 2025-02-14
410

511
Add `node` target to bundle without imported CSS

0 commit comments

Comments
 (0)