Skip to content

Commit c98f1ba

Browse files
committed
version bump to 0.2.0
1 parent e1d9513 commit c98f1ba

File tree

5 files changed

+85
-6
lines changed

5 files changed

+85
-6
lines changed

CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
hiqdev/composer-config-plugin
22
-----------------------------
33

4+
## [0.2.0] - 2017-03-15
5+
6+
- Added initializaion of composer autoloading for project classes become usable in configs ([@hiqsol])
7+
- Added work with `$config_name` paths for use of already built config ([@hiqsol])
8+
- Renamed pathes -> path everywhere ([@hiqsol])
9+
- Added collecting dev aliases for root package ([@hiqsol])
10+
411
## [0.1.0] - 2016-12-26
512

613
- Added proper rebuild ([@hiqsol])
@@ -46,9 +53,15 @@ hiqdev/composer-config-plugin
4653

4754
## [Development started] - 2016-05-18
4855

56+
[@SilverFire]: https://github.com/SilverFire
57+
[d.naumenko.a@gmail.com]: https://github.com/SilverFire
58+
[@tafid]: https://github.com/tafid
59+
[andreyklochok@gmail.com]: https://github.com/tafid
60+
[@BladeRoot]: https://github.com/BladeRoot
61+
[bladeroot@gmail.com]: https://github.com/BladeRoot
4962
[@hiqsol]: https://github.com/hiqsol
5063
[sol@hiqdev.com]: https://github.com/hiqsol
51-
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...HEAD
64+
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.1.0...HEAD
5265
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9
5366
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8
5467
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7
@@ -59,3 +72,4 @@ hiqdev/composer-config-plugin
5972
[0.0.2]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.1...0.0.2
6073
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1
6174
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0
75+
[0.2.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.1.0...0.2.0

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Composer Config Plugin
2-
======================
1+
# Composer Config Plugin
32

43
**Composer plugin for config assembling**
54

chkipper.json

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
11
{
2-
"name": "hiqdev/composer-config-plugin"
2+
"name": "hiqdev/composer-config-plugin",
3+
"authors": {
4+
"hiqsol": {
5+
"name": "Andrii Vasyliev",
6+
"role": "Project lead",
7+
"email": "sol@hiqdev.com",
8+
"github": "https://github.com/hiqsol",
9+
"homepage": "http://hipanel.com/"
10+
},
11+
"SilverFire": {
12+
"name": "Dmitry Naumenko",
13+
"role": "Lead backend developer",
14+
"email": "d.naumenko.a@gmail.com",
15+
"github": "https://github.com/SilverFire",
16+
"homepage": "http://silverfire.me/"
17+
},
18+
"tafid": {
19+
"name": "Andrey Klochok",
20+
"role": "Lead frontend developer",
21+
"email": "andreyklochok@gmail.com",
22+
"github": "https://github.com/tafid",
23+
"homepage": "http://hiqdev.com/"
24+
},
25+
"BladeRoot": {
26+
"name": "Yuriy Myronchuk",
27+
"role": "QA Lead",
28+
"email": "bladeroot@gmail.com",
29+
"github": "https://github.com/BladeRoot",
30+
"homepage": "http://hiqdev.com/"
31+
}
32+
}
333
}

history.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
hiqdev/composer-config-plugin
22
-----------------------------
33

4+
## [0.2.0] - 2017-03-15
5+
6+
- Added initializaion of composer autoloading for project classes become usable in configs
7+
- [e1d9513] 2017-03-15 added initAutoload [@hiqsol]
8+
- Added work with `$config_name` paths for use of already built config
9+
- [4555b54] 2017-03-09 csfixed [@hiqsol]
10+
- [9bba22d] 2017-03-09 added `$config` paths to include built configs [@hiqsol]
11+
- [5f3d05c] 2017-03-08 minor: grammarnazi pathes -> paths [@hiqsol]
12+
- [6d3fb2b] 2017-02-02 csfixed [@hiqsol]
13+
- [a8f42dd] 2017-02-02 return defines back to default list of files [@hiqsol]
14+
- Renamed pathes -> path everywhere
15+
- [82a0652] 2017-02-02 renamed paths <- pathes [@hiqsol]
16+
- [c13991e] 2017-02-02 added exporting defines [@hiqsol]
17+
- [864f8b1] 2017-01-12 renamed `Builder::substitutePaths` <- substitutePathes [@hiqsol]
18+
- [2d68985] 2016-12-31 doc [@hiqsol]
19+
- Added collecting dev aliases for root package
20+
- [49f229b] 2016-12-26 + collect dev aliases for root package [@hiqsol]
21+
422
## [0.1.0] - 2016-12-26
523

624
- Added proper rebuild
@@ -91,6 +109,12 @@ hiqdev/composer-config-plugin
91109

92110
## [Development started] - 2016-05-18
93111

112+
[@SilverFire]: https://github.com/SilverFire
113+
[d.naumenko.a@gmail.com]: https://github.com/SilverFire
114+
[@tafid]: https://github.com/tafid
115+
[andreyklochok@gmail.com]: https://github.com/tafid
116+
[@BladeRoot]: https://github.com/BladeRoot
117+
[bladeroot@gmail.com]: https://github.com/BladeRoot
94118
[@hiqsol]: https://github.com/hiqsol
95119
[sol@hiqdev.com]: https://github.com/hiqsol
96120
[e58cc7a]: https://github.com/hiqdev/composer-config-plugin/commit/e58cc7a
@@ -137,7 +161,7 @@ hiqdev/composer-config-plugin
137161
[ab86c3c]: https://github.com/hiqdev/composer-config-plugin/commit/ab86c3c
138162
[e447659]: https://github.com/hiqdev/composer-config-plugin/commit/e447659
139163
[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
164+
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.1.0...HEAD
141165
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9
142166
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8
143167
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7
@@ -149,3 +173,15 @@ hiqdev/composer-config-plugin
149173
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1
150174
[623d741]: https://github.com/hiqdev/composer-config-plugin/commit/623d741
151175
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0
176+
[e1d9513]: https://github.com/hiqdev/composer-config-plugin/commit/e1d9513
177+
[4555b54]: https://github.com/hiqdev/composer-config-plugin/commit/4555b54
178+
[9bba22d]: https://github.com/hiqdev/composer-config-plugin/commit/9bba22d
179+
[5f3d05c]: https://github.com/hiqdev/composer-config-plugin/commit/5f3d05c
180+
[6d3fb2b]: https://github.com/hiqdev/composer-config-plugin/commit/6d3fb2b
181+
[a8f42dd]: https://github.com/hiqdev/composer-config-plugin/commit/a8f42dd
182+
[82a0652]: https://github.com/hiqdev/composer-config-plugin/commit/82a0652
183+
[c13991e]: https://github.com/hiqdev/composer-config-plugin/commit/c13991e
184+
[864f8b1]: https://github.com/hiqdev/composer-config-plugin/commit/864f8b1
185+
[2d68985]: https://github.com/hiqdev/composer-config-plugin/commit/2d68985
186+
[49f229b]: https://github.com/hiqdev/composer-config-plugin/commit/49f229b
187+
[0.2.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.1.0...0.2.0

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0 2016-12-26 14:02:05 +0000 623d74188d398bf76b34f4bc8b56bdb4f40212d5
1+
0.2.0 2017-03-15 08:46:03 +0000 e1d9513ff406f92bddcfaddf4b85c3e8a96e46e9

0 commit comments

Comments
 (0)