Skip to content

Commit cfeb7ee

Browse files
author
Nick Rabinowitz
committed
Update h3geo.org URLs to remove /next
1 parent 7b0ec5b commit cfeb7ee

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file. This librar
66

77
## [4.0.0] - 2022-08-23
88
### Breaking Changes
9-
- Updated the core library to `v4.0.0`. This update renames the majority of the H3 functions. You can see a [list of changed function names](https://h3geo.org/docs/next/library/migration-3.x/functions) in the core library documentation. For the most part, upgrading to v4 for Javascript consumers should be a straightforward search & replace between the old names and the new. (#151, #144, #141, #139)
9+
- Updated the core library to `v4.0.0`. This update renames the majority of the H3 functions. You can see a [list of changed function names](https://h3geo.org/docs/library/migration-3.x/functions) in the core library documentation. For the most part, upgrading to v4 for Javascript consumers should be a straightforward search & replace between the old names and the new. (#151, #144, #141, #139)
1010
- Added more cases in which JS errors may be thrown. In H3 v3, many functions would fail silently with invalid input, returning `null` or similar signal values. In H3 v4, we will throw descriptive errors for most instances of bad input. (#139)
1111

1212
### Changed
@@ -35,7 +35,7 @@ All notable changes to this project will be documented in this file. This librar
3535
## [4.0.0-rc1] - 2022-07-28
3636
### Breaking Changes
3737
- Updated the core library to `v4.0.0-rc4`. (#141)
38-
- Updated the core library to `v4.0.0-rc2`. This update renames the majority of the H3 functions. You can see a [list of changed function names](https://h3geo.org/docs/next/library/migration-3.x/functions) in the core library documentation. For the most part, upgrading to v4 for Javascript consumers should be a straightforward search & replace between the old names and the new. (#139)
38+
- Updated the core library to `v4.0.0-rc2`. This update renames the majority of the H3 functions. You can see a [list of changed function names](https://h3geo.org/docs/library/migration-3.x/functions) in the core library documentation. For the most part, upgrading to v4 for Javascript consumers should be a straightforward search & replace between the old names and the new. (#139)
3939
- Added more cases in which JS errors may be thrown. In H3 v3, many functions would fail silently with invalid input, returning `null` or similar signal values. In H3 v4, we will throw descriptive errors for most instances of bad input. (#139)
4040

4141
### Added

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For more information on H3 and for the full API documentation, please see the [H
2626
> :tada: **Note:** The following usage docs apply to **H3 v4**, which was released on August 23, 2022.
2727
>
2828
> - For v3 docs, [see the latest v3.x.x release](https://github.com/uber/h3-js/blob/v3.7.2/README.md).
29-
> - For breaking changes in v4, [see the CHANGELOG](./CHANGELOG.md). In particular, most [function names have changed](https://h3geo.org/docs/next/library/migration-3.x/functions).
29+
> - For breaking changes in v4, [see the CHANGELOG](./CHANGELOG.md). In particular, most [function names have changed](https://h3geo.org/docs/library/migration-3.x/functions).
3030
3131
The library uses ES6 modules. Bundles for Node and the browser are built to the `dist` folder.
3232

@@ -1092,7 +1092,7 @@ Coordinates as an `{i, j}` pair
10921092

10931093
### h3.H3Error
10941094
Custom JS Error instance with an attached error code. Error codes come from the
1095-
core H3 library and can be found [in the H3 docs](https://h3geo.org/docs/next/library/errors#table-of-error-codes).
1095+
core H3 library and can be found [in the H3 docs](https://h3geo.org/docs/library/errors#table-of-error-codes).
10961096

10971097
**Properties**
10981098

doc-files/README.tmpl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For more information on H3 and for the full API documentation, please see the [H
2626
> :tada: **Note:** The following usage docs apply to **H3 v4**, which was released on August 23, 2022.
2727
>
2828
> - For v3 docs, [see the latest v3.x.x release](https://github.com/uber/h3-js/blob/v3.7.2/README.md).
29-
> - For breaking changes in v4, [see the CHANGELOG](./CHANGELOG.md). In particular, most [function names have changed](https://h3geo.org/docs/next/library/migration-3.x/functions).
29+
> - For breaking changes in v4, [see the CHANGELOG](./CHANGELOG.md). In particular, most [function names have changed](https://h3geo.org/docs/library/migration-3.x/functions).
3030
3131
The library uses ES6 modules. Bundles for Node and the browser are built to the `dist` folder.
3232

lib/errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const E_OPTION_INVALID = 15;
3434

3535
/**
3636
* Error messages corresponding to the core library error codes. See
37-
* https://h3geo.org/docs/next/library/errors#table-of-error-codes
37+
* https://h3geo.org/docs/library/errors#table-of-error-codes
3838
* @private
3939
*/
4040
const H3_ERROR_MSGS = {

lib/h3core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const SZ_COORDIJ = H3.sizeOfCoordIJ();
8989

9090
/**
9191
* Custom JS Error instance with an attached error code. Error codes come from the
92-
* core H3 library and can be found [in the H3 docs](https://h3geo.org/docs/next/library/errors#table-of-error-codes).
92+
* core H3 library and can be found [in the H3 docs](https://h3geo.org/docs/library/errors#table-of-error-codes).
9393
* @static
9494
* @typedef H3Error
9595
* @property {string} message

0 commit comments

Comments
 (0)