Skip to content

Commit 2243388

Browse files
committed
version bump to 0.1.0
1 parent 623d741 commit 2243388

File tree

3 files changed

+113
-38
lines changed

3 files changed

+113
-38
lines changed

CHANGELOG.md

+30-9
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,61 @@
11
hiqdev/composer-config-plugin
22
-----------------------------
33

4+
## [0.1.0] - 2016-12-26
5+
6+
- Added proper rebuild ([@hiqsol])
7+
- Changed output dir to `composer-config-plugin-output` ([@hiqsol])
8+
- Changed: splitted out `Builder` ([@hiqsol])
9+
- Changed namespace to `hiqdev\composer\config` ([@hiqsol])
10+
411
## [0.0.9] - 2016-09-22
512

6-
- Fixed infinite loop in case of circular dependencies in composer
13+
- Fixed infinite loop in case of circular dependencies in composer ([@hiqsol])
714

815
## [0.0.8] - 2016-08-27
916

10-
- Added showing ordered list of packages when verbose option
17+
- Added showing ordered list of packages when verbose option ([@hiqsol])
1118

1219
## [0.0.7] - 2016-08-26
1320

14-
- Fixed packages processing order again, used original `composer.json`
21+
- Fixed packages processing order again, used original `composer.json` ([@hiqsol])
1522

1623
## [0.0.6] - 2016-08-23
1724

18-
- Fixed packages processing order
25+
- Fixed packages processing order ([@hiqsol])
1926

2027
## [0.0.5] - 2016-06-22
2128

22-
- Added multiple defines
29+
- Added multiple defines ([@hiqsol])
2330

2431
## [0.0.4] - 2016-05-21
2532

26-
- Added multiple configs and params
33+
- Added multiple configs and params ([@hiqsol])
2734

2835
## [0.0.3] - 2016-05-20
2936

30-
- Changed aliases assembling
37+
- Changed aliases assembling ([@hiqsol])
3138

3239
## [0.0.2] - 2016-05-19
3340

34-
- Removed replace composer-extension-plugin
41+
- Removed replace composer-extension-plugin ([@hiqsol])
3542

3643
## [0.0.1] - 2016-05-18
3744

38-
- Added basics
45+
- Added basics ([@hiqsol])
3946

4047
## [Development started] - 2016-05-18
48+
49+
[@hiqsol]: https://github.com/hiqsol
50+
[sol@hiqdev.com]: https://github.com/hiqsol
51+
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...HEAD
52+
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9
53+
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8
54+
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7
55+
[0.0.6]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.5...0.0.6
56+
[0.0.5]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.4...0.0.5
57+
[0.0.4]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.3...0.0.4
58+
[0.0.3]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.2...0.0.3
59+
[0.0.2]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.1...0.0.2
60+
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1
61+
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0

history.md

+82-28
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,98 @@
11
hiqdev/composer-config-plugin
22
-----------------------------
33

4+
## [0.1.0] - 2016-12-26
5+
6+
- Added proper rebuild
7+
- [623d741] 2016-12-26 add FailedWriteException [@hiqsol]
8+
- [c71fd6f] 2016-12-26 fixed fileGet when file does not exist [@hiqsol]
9+
- [02019cd] 2016-12-26 csfixed work with skippable [@hiqsol]
10+
- [9f4362e] 2016-12-26 + proper propagating skippable sign [@hiqsol]
11+
- [778096f] 2016-12-26 + putFile: checks if content changed before writing [@hiqsol]
12+
- [42ffadd] 2016-12-26 fixed namespace in tests [@hiqsol]
13+
- [4554fdd] 2016-12-26 csfixed [@hiqsol]
14+
- [333717a] 2016-12-26 + use dev self for .hidev/vendor [@hiqsol]
15+
- [e61e88b] 2016-12-26 + copying `__rebuild` script [@hiqsol]
16+
- Changed output dir to `composer-config-plugin-output`
17+
- [2a4a539] 2016-12-26 CHANGED output dir to `composer-config-plugin-output` [@hiqsol]
18+
- [ec65010] 2016-12-26 changed: `path()` and substituting pathes moved into Builder [@hiqsol]
19+
- [436f10d] 2016-12-25 added work with `addition` [@hiqsol]
20+
- Changed: splitted out `Builder`
21+
- [b85299b] 2016-12-25 basically finished splitting out Builder [@hiqsol]
22+
- [c53bb32] 2016-12-24 + `Helper::className()` [@hiqsol]
23+
- Changed namespace to `hiqdev\composer\config`
24+
- [ab86c3c] 2016-12-24 started BIG redoing: changed namespace, added Builder, output to other dir [@hiqsol]
25+
- [e447659] 2016-12-23 doc [@hiqsol]
26+
- [e1565a6] 2016-10-04 removed use of `::class` to be older php compatible [@hiqsol]
27+
428
## [0.0.9] - 2016-09-22
529

630
- Fixed infinite loop in case of circular dependencies in composer
7-
- [434673d] 2016-09-22 fixed: prevented infinite loop in case of circular dependencies [sol@hiqdev.com]
8-
- [5b6b30e] 2016-09-14 improved readme [sol@hiqdev.com]
31+
- [434673d] 2016-09-22 fixed: prevented infinite loop in case of circular dependencies [@hiqsol]
32+
- [5b6b30e] 2016-09-14 improved readme [@hiqsol]
933

1034
## [0.0.8] - 2016-08-27
1135

1236
- Added showing ordered list of packages when verbose option
13-
- [5de8257] 2016-08-27 added showing list of packages if verbose [sol@hiqdev.com]
37+
- [5de8257] 2016-08-27 added showing list of packages if verbose [@hiqsol]
1438

1539
## [0.0.7] - 2016-08-26
1640

1741
- Fixed packages processing order again, used original `composer.json`
18-
- [a9c0ba1] 2016-08-26 fixed scrutinizer issues [sol@hiqdev.com]
19-
- [cc15516] 2016-08-25 redone iterateDependencies and used getPrettyName() instead of getName() [sol@hiqdev.com]
42+
- [a9c0ba1] 2016-08-26 fixed scrutinizer issues [@hiqsol]
43+
- [cc15516] 2016-08-25 redone iterateDependencies and used getPrettyName() instead of getName() [@hiqsol]
2044

2145
## [0.0.6] - 2016-08-23
2246

2347
- Fixed packages processing order
24-
- [c4bf7f9] 2016-08-23 more ideas [sol@hiqdev.com]
25-
- [8340080] 2016-08-23 + require-dev phpunit 5.5 [sol@hiqdev.com]
26-
- [e08e6c7] 2016-08-23 fixed tests for composer 5.5 [sol@hiqdev.com]
27-
- [94284df] 2016-08-23 csfixed [sol@hiqdev.com]
28-
- [2faafaa] 2016-08-23 redone to chkipper for bumping [sol@hiqdev.com]
29-
- [0e4f55b] 2016-08-23 added fixed packages processing order [sol@hiqdev.com]
48+
- [c4bf7f9] 2016-08-23 more ideas [@hiqsol]
49+
- [8340080] 2016-08-23 + require-dev phpunit 5.5 [@hiqsol]
50+
- [e08e6c7] 2016-08-23 fixed tests for composer 5.5 [@hiqsol]
51+
- [94284df] 2016-08-23 csfixed [@hiqsol]
52+
- [2faafaa] 2016-08-23 redone to chkipper for bumping [@hiqsol]
53+
- [0e4f55b] 2016-08-23 added fixed packages processing order [@hiqsol]
3054

3155
## [0.0.5] - 2016-06-22
3256

3357
- Added multiple defines
34-
- [e58cc7a] 2016-06-22 allowed travis build failure for PHP 5.5 [sol@hiqdev.com]
35-
- [5b84dc8] 2016-06-22 added ability to have multiple defines [sol@hiqdev.com]
36-
- [827d606] 2016-05-22 csfixed [sol@hiqdev.com]
58+
- [e58cc7a] 2016-06-22 allowed travis build failure for PHP 5.5 [@hiqsol]
59+
- [5b84dc8] 2016-06-22 added ability to have multiple defines [@hiqsol]
60+
- [827d606] 2016-05-22 csfixed [@hiqsol]
3761

3862
## [0.0.4] - 2016-05-21
3963

4064
- Added multiple configs and params
41-
- [e9c4899] 2016-05-21 forced arrays [sol@hiqdev.com]
42-
- [d1fdc77] 2016-05-20 + added multiple configs and params [sol@hiqdev.com]
65+
- [e9c4899] 2016-05-21 forced arrays [@hiqsol]
66+
- [d1fdc77] 2016-05-20 + added multiple configs and params [@hiqsol]
4367

4468
## [0.0.3] - 2016-05-20
4569

4670
- Changed aliases assembling
47-
- [1076668] 2016-05-20 csfixed [sol@hiqdev.com]
48-
- [174c848] 2016-05-19 simplified aliases assembling [sol@hiqdev.com]
49-
- [5f232e4] 2016-05-19 improved Idea [sol@hiqdev.com]
50-
- [a976f3e] 2016-05-19 added Idea readme section [sol@hiqdev.com]
71+
- [1076668] 2016-05-20 csfixed [@hiqsol]
72+
- [174c848] 2016-05-19 simplified aliases assembling [@hiqsol]
73+
- [5f232e4] 2016-05-19 improved Idea [@hiqsol]
74+
- [a976f3e] 2016-05-19 added Idea readme section [@hiqsol]
5175

5276
## [0.0.2] - 2016-05-19
5377

5478
- Removed replace composer-extension-plugin
55-
- [0a3d1a6] 2016-05-19 removed replace composer-extension-plugin [sol@hiqdev.com]
79+
- [0a3d1a6] 2016-05-19 removed replace composer-extension-plugin [@hiqsol]
5680

5781
## [0.0.1] - 2016-05-18
5882

5983
- Added basics
60-
- [15e92b4] 2016-05-18 fixed getting baseDir [sol@hiqdev.com]
61-
- [ec3bda1] 2016-05-18 rehideved [sol@hiqdev.com]
62-
- [470dc87] 2016-05-18 looks working [sol@hiqdev.com]
63-
- [65d1a3e] 2016-05-18 redoing [sol@hiqdev.com]
64-
- [927a73f] 2016-05-18 + replace composer-extension-plugin [sol@hiqdev.com]
65-
- [6270475] 2016-05-18 redoing [sol@hiqdev.com]
66-
- [79b5c49] 2016-05-18 inited [sol@hiqdev.com]
84+
- [15e92b4] 2016-05-18 fixed getting baseDir [@hiqsol]
85+
- [ec3bda1] 2016-05-18 rehideved [@hiqsol]
86+
- [470dc87] 2016-05-18 looks working [@hiqsol]
87+
- [65d1a3e] 2016-05-18 redoing [@hiqsol]
88+
- [927a73f] 2016-05-18 + replace composer-extension-plugin [@hiqsol]
89+
- [6270475] 2016-05-18 redoing [@hiqsol]
90+
- [79b5c49] 2016-05-18 inited [@hiqsol]
6791

6892
## [Development started] - 2016-05-18
6993

94+
[@hiqsol]: https://github.com/hiqsol
95+
[sol@hiqdev.com]: https://github.com/hiqsol
7096
[e58cc7a]: https://github.com/hiqdev/composer-config-plugin/commit/e58cc7a
7197
[5b84dc8]: https://github.com/hiqdev/composer-config-plugin/commit/5b84dc8
7298
[827d606]: https://github.com/hiqdev/composer-config-plugin/commit/827d606
@@ -95,3 +121,31 @@ hiqdev/composer-config-plugin
95121
[5de8257]: https://github.com/hiqdev/composer-config-plugin/commit/5de8257
96122
[434673d]: https://github.com/hiqdev/composer-config-plugin/commit/434673d
97123
[5b6b30e]: https://github.com/hiqdev/composer-config-plugin/commit/5b6b30e
124+
[c71fd6f]: https://github.com/hiqdev/composer-config-plugin/commit/c71fd6f
125+
[02019cd]: https://github.com/hiqdev/composer-config-plugin/commit/02019cd
126+
[9f4362e]: https://github.com/hiqdev/composer-config-plugin/commit/9f4362e
127+
[778096f]: https://github.com/hiqdev/composer-config-plugin/commit/778096f
128+
[42ffadd]: https://github.com/hiqdev/composer-config-plugin/commit/42ffadd
129+
[4554fdd]: https://github.com/hiqdev/composer-config-plugin/commit/4554fdd
130+
[333717a]: https://github.com/hiqdev/composer-config-plugin/commit/333717a
131+
[e61e88b]: https://github.com/hiqdev/composer-config-plugin/commit/e61e88b
132+
[2a4a539]: https://github.com/hiqdev/composer-config-plugin/commit/2a4a539
133+
[ec65010]: https://github.com/hiqdev/composer-config-plugin/commit/ec65010
134+
[436f10d]: https://github.com/hiqdev/composer-config-plugin/commit/436f10d
135+
[b85299b]: https://github.com/hiqdev/composer-config-plugin/commit/b85299b
136+
[c53bb32]: https://github.com/hiqdev/composer-config-plugin/commit/c53bb32
137+
[ab86c3c]: https://github.com/hiqdev/composer-config-plugin/commit/ab86c3c
138+
[e447659]: https://github.com/hiqdev/composer-config-plugin/commit/e447659
139+
[e1565a6]: https://github.com/hiqdev/composer-config-plugin/commit/e1565a6
140+
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...HEAD
141+
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9
142+
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8
143+
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7
144+
[0.0.6]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.5...0.0.6
145+
[0.0.5]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.4...0.0.5
146+
[0.0.4]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.3...0.0.4
147+
[0.0.3]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.2...0.0.3
148+
[0.0.2]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.1...0.0.2
149+
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1
150+
[623d741]: https://github.com/hiqdev/composer-config-plugin/commit/623d741
151+
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.9 2016-09-22 13:49:48 +0000 434673d2c6cc6021595c257a858fd1f267963f8e
1+
0.1.0 2016-12-26 14:02:05 +0000 623d74188d398bf76b34f4bc8b56bdb4f40212d5

0 commit comments

Comments
 (0)