Skip to content

Commit 34c751c

Browse files
authored
Add changelog
1 parent 7243b35 commit 34c751c

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Change Log
2+
3+
PHP Curl Class uses semantic versioning with version numbers written as `MAJOR.MINOR.PATCH`. You may safely update
4+
`MINOR` and `PATCH` version changes. It is recommended to review `MAJOR` changes prior to upgrade as there may be
5+
backwards-incompatible changes that will affect existing usage.
6+
7+
### Changes
8+
9+
(TODO: Add changes for next `MAJOR` version release.)
10+
11+
### Manual Review
12+
13+
Manually view changes on the [comparison page](https://github.com/php-curl-class/php-curl-class/compare/). For example,
14+
visit [7.4.0...8.0.0](https://github.com/php-curl-class/php-curl-class/compare/7.4.0...8.0.0) to compare the changes for
15+
the `MAJOR` upgrade from 7.4.0 to 8.0.0. Comparing against `HEAD` is also possible using the `tag...HEAD` syntax
16+
([8.3.0...HEAD](https://github.com/php-curl-class/php-curl-class/compare/8.3.0...HEAD)).
17+
18+
View the log between releases:
19+
20+
$ git fetch --tags
21+
$ git log 7.4.0...8.0.0
22+
23+
View the code changes between releases:
24+
25+
$ git fetch --tags
26+
$ git diff 7.4.0...8.0.0
27+
28+
View only the source log and code changes between releases:
29+
30+
$ git log 7.4.0...8.0.0 "src/"
31+
$ git diff 7.4.0...8.0.0 "src/"

0 commit comments

Comments
 (0)