Skip to content

Commit

Permalink
Fixed version string (issue #50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibyx committed Feb 15, 2021
1 parent 9ef1c8e commit a32e152
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ composer.lock
.DS_Store?
*.DS_Store
/.php_cs.cache
/.phpunit.result.cache
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.1 : 2021-02-15

- **Fix**: Fixed `VERSION` string in `phpGPX.php`

## 1.1.0 : 2021-02-05

- **Feature**: [Limiting maximum elevation difference to protect from spikes](https://github.com/Sibyx/phpGPX/pull/49)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ You can easily install phpGPX library with [composer](https://getcomposer.org/).
please use release candidates.

```
composer require sibyx/phpgpx:@1.1.0
composer require sibyx/phpgpx:@1.1.1
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sibyx/phpgpx",
"type": "library",
"version": "1.1.0",
"version": "1.1.1",
"description": "A simple PHP library for GPX import/export",
"minimum-stability": "stable",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/phpGPX/phpGPX.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class phpGPX
const XML_FORMAT = 'xml';

const PACKAGE_NAME = 'phpGPX';
const VERSION = '1.0.1';
const VERSION = '1.1.1';

/**
* Create Stats object for each track, segment and route
Expand Down

0 comments on commit a32e152

Please sign in to comment.