File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
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/"
You can’t perform that action at this time.
0 commit comments