Skip to content

Commit 5f15d65

Browse files
committed
Add back the change log file
1 parent e827633 commit 5f15d65

3 files changed

Lines changed: 35 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/vendor/
22
composer.lock
3+
.idea

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Change log of `open-location-code-php`
2+
3+
Note: you may refer to `README.md` for description of features.
4+
5+
## Dev (WIP)
6+
7+
## 1.1.2 (2024-10-29)
8+
9+
Hotfix: removed `composer.lock` from distribution (ba2014fc551dbfd2456eadb4f9e31ed5f80671a6)
10+
11+
## 1.1.1 (2024-10-23)
12+
13+
Hotfix: the code calculators are now `final` (b52ff47a044a12bbe364856c7f3fbf8e0ced4aa3)
14+
15+
## 1.1.0 (2024-10-23)
16+
17+
Minor update to the library.
18+
19+
- Added a new way to efficiently check OLC area containment for many points (https://github.com/Vectorial1024/open-location-code-php/pull/3)
20+
- 32-bit compatibility is now automatically applied to only 32-bit PHP runtime (https://github.com/Vectorial1024/open-location-code-php/pull/4)
21+
- Fixed a minor PHPDoc error
22+
23+
## 1.0.0 (2024-10-04)
24+
25+
Initial release.
26+
27+
This is a modern PHP port of the `google/open-location-code` repository to handle Open Location Codes (aka Plus Codes).
28+
29+
- Uses PHP objects to handle Open Location Code
30+
- OLC decoding returns an object for easier handling

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ composer require vectorial1024/open-location-code-php
3232
**Special Notice**: to ensure 32-bit PHP compatibility, this library will check the PHP runtime and, if it detects a 32-bit PHP runtime, will use `float` variables instead of `int` variables to calculate Open Location Codes.
3333
This may cause some unintended inaccuracies in 32-bit PHP, but generally speaking, there should be no problems.
3434

35+
### Change log
36+
37+
Please see `CHANGELOG.MD`.
38+
3539
## Example code
3640

3741
### Checking and creating OLC codes

0 commit comments

Comments
 (0)