From 4f4bb6e6e48fd6fa51b8b05a75fcd721e98bb530 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Tue, 22 Nov 2022 00:39:24 +0100 Subject: [PATCH] Prepare for release --- CHANGELOG.md | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46906f1..d95e7e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## UNRELEASED (0.9.0) +## [0.9.0](https://github.com/brick/geo/releases/tag/0.9.0) - 2022-11-22 💥 **Breaking changes** - Proxies are now `@internal` and considered an implementation detail. This means that they are no longer part of the public API and can change at any time. This means that you should *always* type-hint against the base class and not the proxy. -- `Point` constructor now throw an exception when passing NaN or infinite coordinates. +- `Point` constructor now throws an exception when passing `NaN` or infinite coordinates. - `GeometryEngine::pointOnSurface()` now returns `Point` instead of `Geometry`. 🐛 **Bug fixes** diff --git a/README.md b/README.md index 381ed2c..eac2562 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ The current releases are numbered `0.x.y`. When a non-breaking change is introdu **When a breaking change is introduced, a new `0.x` version cycle is always started.** -It is therefore safe to lock your project to a given release cycle, such as `0.8.*`. +It is therefore safe to lock your project to a given release cycle, such as `0.9.*`. If you need to upgrade to a newer release cycle, check the [release history](https://github.com/brick/geo/releases) for a list of changes introduced by each further `0.x.0` version.