UNPKG

20.8 kBMarkdownView Raw
1<a name="3.3.0"></a>
2# 3.3.0 (2017-05-22)
3
4* Add fmt-objet configuration from Acho settings ([aa2e7a5](https://github.com/achohq/acho/commit/aa2e7a5))
5* Avoid eval twice times for the same ([b4a0c61](https://github.com/achohq/acho/commit/b4a0c61))
6* Avoid unnecessary check ([9585396](https://github.com/achohq/acho/commit/9585396))
7* Better naming ([a2c1a2e](https://github.com/achohq/acho/commit/a2c1a2e))
8* Fix bumped config ([da83300](https://github.com/achohq/acho/commit/da83300))
9* Fix linter ([5857501](https://github.com/achohq/acho/commit/5857501))
10* Remove browser build ([f69bb73](https://github.com/achohq/acho/commit/f69bb73))
11* Update copy ([63b6c12](https://github.com/achohq/acho/commit/63b6c12))
12* Update fmt-objt interface ([71ab2f3](https://github.com/achohq/acho/commit/71ab2f3))
13* Update travis builds ([990e1b3](https://github.com/achohq/acho/commit/990e1b3))
14* fix(package): update fmt-obj to version 2.0.0 ([22d0546](https://github.com/achohq/acho/commit/22d0546))
15
16
17
18<a name="3.2.1"></a>
19## 3.2.1 (2017-04-17)
20
21* Fix function params ([645037c](https://github.com/achohq/acho/commit/645037c))
22
23
24
25<a name="3.2.0"></a>
26# 3.2.0 (2017-04-14)
27
28* Add %J formatter ([4192659](https://github.com/achohq/acho/commit/4192659))
29* Refactor formatter ([99585a6](https://github.com/achohq/acho/commit/99585a6))
30* Update deps ([e5283d7](https://github.com/achohq/acho/commit/e5283d7))
31* Update README.md ([b325807](https://github.com/achohq/acho/commit/b325807))
32* Update travis builds ([77a2452](https://github.com/achohq/acho/commit/77a2452))
33* chore(package): update dependencies ([76eb538](https://github.com/achohq/acho/commit/76eb538))
34
35
36
37<a name="3.1.2"></a>
38## 3.1.2 (2017-03-03)
39
40* Remove unnecessary dependency ([2e22e0f](https://github.com/achohq/acho/commit/2e22e0f))
41* fix(package): update coffee-script to version 1.12.0 ([79ce119](https://github.com/achohq/acho/commit/79ce119))
42
43
44
45<a name="3.1.1"></a>
46## 3.1.1 (2016-10-04)
47
48* Change ms dep in favour of pretty-ms ([1ede313](https://github.com/achohq/acho/commit/1ede313))
49* Removed typo ([d747872](https://github.com/achohq/acho/commit/d747872))
50* Update ([0ca4660](https://github.com/achohq/acho/commit/0ca4660))
51
52
53
54<a name="3.1.0"></a>
55# 3.1.0 (2016-09-29)
56
57### Minor
58
59* Expose defaults under `Acho.defaults`.
60* Configurable `timestamp` passing a `Number` (Previously it was a `Boolean`).
61* Drop 0.12 and 0.10 support. Remove polyfill dependency.
62* Remove `strip-ansi`.
63* Little `Date` optimization.
64
65### Commits
66
67* Add coverage ([1aa6461](https://github.com/achohq/acho/commit/1aa6461))
68* Add files section ([8bd39a6](https://github.com/achohq/acho/commit/8bd39a6))
69* Configurable timestamp timing ([4fc59d3](https://github.com/achohq/acho/commit/4fc59d3))
70* Drop node < 4 support ([42f80ef](https://github.com/achohq/acho/commit/42f80ef))
71* Drop repeat-string dep ([dfe30f2](https://github.com/achohq/acho/commit/dfe30f2))
72* Expose Acho.defaults ([daf6938](https://github.com/achohq/acho/commit/daf6938))
73* Move strip ansi from message out of the logger ([b179882](https://github.com/achohq/acho/commit/b179882))
74* new Date() → Date.now() ([254a6f3](https://github.com/achohq/acho/commit/254a6f3))
75* Remove stripAnsi reference ([0799f10](https://github.com/achohq/acho/commit/0799f10))
76* Remove unused var ([a619744](https://github.com/achohq/acho/commit/a619744))
77* chore(package): update dependencies ([c9459ce](https://github.com/achohq/acho/commit/c9459ce))
78
79
80
81<a name="3.0.2"></a>
82## 3.0.2 (2016-05-26)
83
84* Better smart colorize ([a7b2c78](https://github.com/achohq/acho/commit/a7b2c78))
85
86
87
88<a name="3.0.1"></a>
89## 3.0.1 (2016-05-26)
90
91* Avoid production special cases ([62db27a](https://github.com/achohq/acho/commit/62db27a))
92* strip ansi under production ([837ff8d](https://github.com/achohq/acho/commit/837ff8d))
93* Update ([2f5de4f](https://github.com/achohq/acho/commit/2f5de4f))
94
95
96
97<a name="3.0.0"></a>
98# 3.0.0 (2016-05-01)
99
100## Breaking Changes
101
102- Simplifiest default logging levels to `.fatal()`, `.error()`, `.warn()`, `info()`, `debug()`.
103- Mute levels use `muted` keyword instead of `silent`.
104
105## New Features
106
107- Add `upperCase` flag to prints loglevels in uppercase.
108- Add `timestamp` flag to prints counter associated with each log.
109- Add `.skin` to make easy load different log levels. Check [acho-skin-cli](https://github.com/achohq/acho-skin-cli).
110
111## Fixes, refactoring and optimizations
112
113- Use [lodash#defaults](https://lodash.com/docs#defaults) instead of [existential-defaults](https://github.com/Kikobeats/existential-default) (more lightweight).
114- Indent log levels from the left instead of from the right (so cute!).
115- Logfmt now works with Error's message.
116
117## Commits
118
119* Add .skin method ([ac1a16d](https://github.com/achohq/acho/commit/ac1a16d))
120* Add docs ([822b697](https://github.com/achohq/acho/commit/822b697))
121* Add experimental RFC5424 levels ([37661c4](https://github.com/achohq/acho/commit/37661c4))
122* Add repeat polyfill ([b2a3337](https://github.com/achohq/acho/commit/b2a3337))
123* Add testing dependency ([1a14ea6](https://github.com/achohq/acho/commit/1a14ea6))
124* Add timestamp ([8dc0d20](https://github.com/achohq/acho/commit/8dc0d20))
125* Add uppercase param ([41fd01c](https://github.com/achohq/acho/commit/41fd01c))
126* Correctly indent context ([1fe6f9b](https://github.com/achohq/acho/commit/1fe6f9b))
127* Disable timestamp by default ([efbc12f](https://github.com/achohq/acho/commit/efbc12f))
128* Expand example ([5cef0cd](https://github.com/achohq/acho/commit/5cef0cd))
129* Fix links references ([e08da90](https://github.com/achohq/acho/commit/e08da90))
130* Fix output boolean values ([e320e95](https://github.com/achohq/acho/commit/e320e95))
131* Fix tests ([8a36b70](https://github.com/achohq/acho/commit/8a36b70))
132* Fix typo ([25dcbc7](https://github.com/achohq/acho/commit/25dcbc7))
133* Fix typo ([81631e9](https://github.com/achohq/acho/commit/81631e9))
134* Improve color style ([786810e](https://github.com/achohq/acho/commit/786810e))
135* Little refactor ([2664f02](https://github.com/achohq/acho/commit/2664f02))
136* Move CLI types out of the project ([d02b6a2](https://github.com/achohq/acho/commit/d02b6a2))
137* move repository references ([f481011](https://github.com/achohq/acho/commit/f481011))
138* output correctly align and context ([ed1e454](https://github.com/achohq/acho/commit/ed1e454))
139* Refactor tests ([91cbdc9](https://github.com/achohq/acho/commit/91cbdc9))
140* Reorganize examples ([305f8e5](https://github.com/achohq/acho/commit/305f8e5))
141* Separate align from separator ([671b472](https://github.com/achohq/acho/commit/671b472))
142* Separate cli mode from logging levels ([585423a](https://github.com/achohq/acho/commit/585423a))
143* silent → muted ([c317250](https://github.com/achohq/acho/commit/c317250))
144* Support Error serialization ([0064885](https://github.com/achohq/acho/commit/0064885))
145* Update docs ([2e29c7f](https://github.com/achohq/acho/commit/2e29c7f))
146* Update example ([209a142](https://github.com/achohq/acho/commit/209a142))
147* Update examples ([da0bba5](https://github.com/achohq/acho/commit/da0bba5))
148* WIP ([0146df6](https://github.com/achohq/acho/commit/0146df6))
149* chore(package): update existential-default to version 1.2.1 ([fc88993](https://github.com/achohq/acho/commit/fc88993))
150
151
152
153<a name="2.8.0"></a>
154# 2.8.0 (2016-04-22)
155
156* Add keys color based on the level ([d120614](https://github.com/kikobeats/acho/commit/d120614))
157* Add testing file ([2934428](https://github.com/kikobeats/acho/commit/2934428))
158
159
160
161<a name="2.7.2"></a>
162## 2.7.2 (2016-04-20)
163
164* Add a more intelligent align ([644cddd](https://github.com/kikobeats/acho/commit/644cddd))
165* Improve serialization ([c583358](https://github.com/kikobeats/acho/commit/c583358))
166
167
168
169<a name="2.7.1"></a>
170## 2.7.1 (2016-04-18)
171
172* Add instanceof for new keyword ([e02a43e](https://github.com/kikobeats/acho/commit/e02a43e))
173* Add messages flag documentation ([c735734](https://github.com/kikobeats/acho/commit/c735734))
174* Refactor tests, more useful ([d85467f](https://github.com/kikobeats/acho/commit/d85467f))
175* update bumped settings ([189711a](https://github.com/kikobeats/acho/commit/189711a))
176
177
178
179<a name="2.7.0"></a>
180# 2.7.0 (2016-04-18)
181
182* Add possibility to setup custom align ([c52064f](https://github.com/kikobeats/acho/commit/c52064f))
183* Better docs ([e17548a](https://github.com/kikobeats/acho/commit/e17548a))
184* Typo ([64c6bc9](https://github.com/kikobeats/acho/commit/64c6bc9))
185
186
187
188<a name="2.6.2"></a>
189## 2.6.2 (2016-04-16)
190
191* Fix mute levels ([3c3c307](https://github.com/kikobeats/acho/commit/3c3c307))
192
193
194
195<a name="2.6.1"></a>
196## 2.6.1 (2016-04-16)
197
198* Fix setup a custom keyword ([30dcf5d](https://github.com/kikobeats/acho/commit/30dcf5d))
199
200
201
202<a name="2.6.0"></a>
203# 2.6.0 (2016-04-16)
204
205* Add object serialization ([428859e](https://github.com/kikobeats/acho/commit/428859e))
206* Fix typo ([bb5a29f](https://github.com/kikobeats/acho/commit/bb5a29f))
207* Update docs ([ce0064e](https://github.com/kikobeats/acho/commit/ce0064e))
208* Update docs ([a038f4f](https://github.com/kikobeats/acho/commit/a038f4f))
209
210
211
212<a name="2.5.3"></a>
213## 2.5.3 (2016-02-02)
214
215
216* Release 2.5.2 ([c9315ab](https://github.com/kikobeats/acho/commit/c9315ab))
217* Update dependencies ([e4e3206](https://github.com/kikobeats/acho/commit/e4e3206))
218* update settings ([5414575](https://github.com/kikobeats/acho/commit/5414575))
219* use existential-default instead of assign ([78697cd](https://github.com/kikobeats/acho/commit/78697cd))
220
221
222
223<a name="2.5.1"></a>
224## 2.5.1 (2016-01-26)
225
226
227* Delete unnecessary dependency ([831c4e2](https://github.com/kikobeats/acho/commit/831c4e2))
228* Release 2.5.1 ([1249c33](https://github.com/kikobeats/acho/commit/1249c33))
229
230
231
232<a name="2.5.0"></a>
233# 2.5.0 (2016-01-25)
234
235
236* Add documentation ([c4795a5](https://github.com/kikobeats/acho/commit/c4795a5))
237* Add symbol special keyword ([c287277](https://github.com/kikobeats/acho/commit/c287277))
238* Release 2.5.0 ([001ab8e](https://github.com/kikobeats/acho/commit/001ab8e))
239* Separate align from diff ([134fa13](https://github.com/kikobeats/acho/commit/134fa13))
240* update scripts ([cd64037](https://github.com/kikobeats/acho/commit/cd64037))
241
242
243
244<a name="2.4.2"></a>
245## 2.4.2 (2016-01-23)
246
247
248* 2.4.2 releases ([8b27e1a](https://github.com/kikobeats/acho/commit/8b27e1a))
249* Delete extra space ([d8eeb8f](https://github.com/kikobeats/acho/commit/d8eeb8f))
250* Delete line break ([0edd794](https://github.com/kikobeats/acho/commit/0edd794))
251* Fix tests script ([cd34ec8](https://github.com/kikobeats/acho/commit/cd34ec8))
252* Move prepublish into bumped step ([eefa46a](https://github.com/kikobeats/acho/commit/eefa46a))
253* Update bumped config ([16128e6](https://github.com/kikobeats/acho/commit/16128e6))
254* update scripts ([d74876f](https://github.com/kikobeats/acho/commit/d74876f))
255* Update scripts, more simple ([d5f4209](https://github.com/kikobeats/acho/commit/d5f4209))
256
257
258
259<a name="2.4.1"></a>
260## 2.4.1 (2015-12-05)
261
262
263* 2.4.1 releases ([58c3b3d](https://github.com/kikobeats/acho/commit/58c3b3d))
264* added existential-assign dep ([f8b35d4](https://github.com/kikobeats/acho/commit/f8b35d4))
265* better gif, round 2. ([675710e](https://github.com/kikobeats/acho/commit/675710e))
266* bye fat arrow ([431b1d1](https://github.com/kikobeats/acho/commit/431b1d1))
267* composition over inheritance ([963907e](https://github.com/kikobeats/acho/commit/963907e))
268* little refactor ([3906739](https://github.com/kikobeats/acho/commit/3906739))
269* little refactor ([28f225c](https://github.com/kikobeats/acho/commit/28f225c))
270* Moved configurable stuff into Default ([f7c3b26](https://github.com/kikobeats/acho/commit/f7c3b26))
271* moved getEnvironment inot CONST.ENV ([403cf73](https://github.com/kikobeats/acho/commit/403cf73))
272* no moar new keyword ([8417785](https://github.com/kikobeats/acho/commit/8417785))
273* refactor test, more expressive ([cb0f665](https://github.com/kikobeats/acho/commit/cb0f665))
274* refactored, less is more ([a2edabd](https://github.com/kikobeats/acho/commit/a2edabd))
275* removed new keyword, not necessary any more ([85bc524](https://github.com/kikobeats/acho/commit/85bc524))
276* removed unnecessary new keyword ([9905b4a](https://github.com/kikobeats/acho/commit/9905b4a))
277* Update .travis.yml ([284724c](https://github.com/kikobeats/acho/commit/284724c))
278* Update README.md ([01aea77](https://github.com/kikobeats/acho/commit/01aea77))
279* Update README.md ([86cf60e](https://github.com/kikobeats/acho/commit/86cf60e))
280* updated ([b603a19](https://github.com/kikobeats/acho/commit/b603a19))
281* updated bumped settings ([1010569](https://github.com/kikobeats/acho/commit/1010569))
282
283
284
285<a name="2.4.0"></a>
286# 2.4.0 (2015-11-17)
287
288
289* 2.4.0 releases ([fd6fb87](https://github.com/kikobeats/acho/commit/fd6fb87))
290* added string interpolation support ([f3c7623](https://github.com/kikobeats/acho/commit/f3c7623))
291* better gif 💅 ([adae687](https://github.com/kikobeats/acho/commit/adae687))
292* fixed disabled colors param ([ab7fd74](https://github.com/kikobeats/acho/commit/ab7fd74))
293* fixed extra space with diff param ([f358e5b](https://github.com/kikobeats/acho/commit/f358e5b))
294* updated library preview 💪 ([e207335](https://github.com/kikobeats/acho/commit/e207335))
295
296
297
298<a name="2.3.0"></a>
299# 2.3.0 (2015-10-16)
300
301
302* 2.3.0 releases ([1453d16](https://github.com/kikobeats/acho/commit/1453d16))
303* added experimental .align & .timestamp params ([0a4214f](https://github.com/kikobeats/acho/commit/0a4214f))
304* possibility to decide where put diff in the output ([bb03a48](https://github.com/kikobeats/acho/commit/bb03a48))
305
306
307
308<a name="2.2.1"></a>
309## 2.2.1 (2015-10-14)
310
311
312* 2.2.1 releases ([425b6d9](https://github.com/kikobeats/acho/commit/425b6d9))
313* code more simply ([9e2d748](https://github.com/kikobeats/acho/commit/9e2d748))
314* fixed keyword style ([9f18a6c](https://github.com/kikobeats/acho/commit/9f18a6c))
315
316
317
318<a name="2.2.0"></a>
319# 2.2.0 (2015-10-14)
320
321
322* 2.2.0 releases ([27cb3b0](https://github.com/kikobeats/acho/commit/27cb3b0))
323* added keyword parameter in constructor ([967023d](https://github.com/kikobeats/acho/commit/967023d))
324* complemented documentation ([abc2153](https://github.com/kikobeats/acho/commit/abc2153))
325* Update package.json ([8b4b0a4](https://github.com/kikobeats/acho/commit/8b4b0a4))
326* Update README.md ([c077a60](https://github.com/kikobeats/acho/commit/c077a60))
327* Update README.md ([44bc90f](https://github.com/kikobeats/acho/commit/44bc90f))
328
329
330
331<a name="2.1.0"></a>
332# 2.1.0 (2015-08-17)
333
334
335* 2.1.0 releases ([ddcc6c3](https://github.com/kikobeats/acho/commit/ddcc6c3))
336* added generateTypeMessage as external parameter. ([a0f67f3](https://github.com/kikobeats/acho/commit/a0f67f3))
337* Added transport option ([a1170e3](https://github.com/kikobeats/acho/commit/a1170e3))
338* fixed production check ([af63da9](https://github.com/kikobeats/acho/commit/af63da9))
339* Improve production comparation ([eee1281](https://github.com/kikobeats/acho/commit/eee1281))
340* updated ([ca112ba](https://github.com/kikobeats/acho/commit/ca112ba))
341* updated ([ad532e2](https://github.com/kikobeats/acho/commit/ad532e2))
342
343
344
345<a name="2.0.0"></a>
346# 2.0.0 (2015-07-31)
347
348
349* 2.0.0 releases ([0daf159](https://github.com/kikobeats/acho/commit/0daf159))
350* avoid avoid colorize messages in production under NodeJS ([f6d2d54](https://github.com/kikobeats/acho/commit/f6d2d54))
351* colors by default ([103194b](https://github.com/kikobeats/acho/commit/103194b))
352* documentation refactor ([bc43872](https://github.com/kikobeats/acho/commit/bc43872))
353* expose generateMessage ([57c3b9f](https://github.com/kikobeats/acho/commit/57c3b9f))
354* little refactor. ([4046677](https://github.com/kikobeats/acho/commit/4046677))
355* Update README.md ([fd0acee](https://github.com/kikobeats/acho/commit/fd0acee))
356* updated ([2bec971](https://github.com/kikobeats/acho/commit/2bec971))
357* updated bumped settings ([3025456](https://github.com/kikobeats/acho/commit/3025456))
358
359
360
361<a name="1.0.8"></a>
362## 1.0.8 (2015-06-14)
363
364
365* 1.0.8 releases ([6e56dac](https://github.com/kikobeats/acho/commit/6e56dac))
366* use options.messages if is available ([19aff24](https://github.com/kikobeats/acho/commit/19aff24))
367
368
369
370<a name="1.0.7"></a>
371## 1.0.7 (2015-05-30)
372
373
374* 1.0.7 releases ([2e5f011](https://github.com/kikobeats/acho/commit/2e5f011))
375* improved log level function generation ([0ad83a5](https://github.com/kikobeats/acho/commit/0ad83a5))
376* updated ([809217b](https://github.com/kikobeats/acho/commit/809217b))
377
378
379
380<a name="1.0.6"></a>
381## 1.0.6 (2015-05-10)
382
383
384* 1.0.6 releases ([a1ac35a](https://github.com/kikobeats/acho/commit/a1ac35a))
385* deleted unnecessary code ([72c10f4](https://github.com/kikobeats/acho/commit/72c10f4))
386* updated ([3f36779](https://github.com/kikobeats/acho/commit/3f36779))
387
388
389
390<a name="1.0.5"></a>
391## 1.0.5 (2015-05-09)
392
393
394* 1.0.4 releases ([e4bcef2](https://github.com/kikobeats/acho/commit/e4bcef2))
395* 1.0.5 releases ([448ea4e](https://github.com/kikobeats/acho/commit/448ea4e))
396* first commit ([99c44a4](https://github.com/kikobeats/acho/commit/99c44a4))
397* Update README.md ([330b4d0](https://github.com/kikobeats/acho/commit/330b4d0))
398* update warning message into warn ([5c1654d](https://github.com/kikobeats/acho/commit/5c1654d))
399
400
401
402<a name="1.0.4"></a>
403## 1.0.4 (2015-03-19)
404
405
406* fixed extra space ([11d2c1e](https://github.com/kikobeats/acho/commit/11d2c1e))
407
408
409
410<a name="1.0.3"></a>
411## 1.0.3 (2015-03-19)
412
413
414* 1.0.3 releases ([193f234](https://github.com/kikobeats/acho/commit/193f234))
415* because mac is not a real os ([e636ce2](https://github.com/kikobeats/acho/commit/e636ce2))
416* linus torvalds is crying for this ([f4eff0f](https://github.com/kikobeats/acho/commit/f4eff0f))
417* Merge pull request #4 from clocklear/master ([4cfdb40](https://github.com/kikobeats/acho/commit/4cfdb40))
418* Switched to titleize for propercase ([45a9bfd](https://github.com/kikobeats/acho/commit/45a9bfd))
419* Update README.md ([1082a73](https://github.com/kikobeats/acho/commit/1082a73))
420* Update README.md ([78407bb](https://github.com/kikobeats/acho/commit/78407bb))
421* Update README.md ([88e415d](https://github.com/kikobeats/acho/commit/88e415d))
422* Update README.md ([9b04cb2](https://github.com/kikobeats/acho/commit/9b04cb2))
423* updated ([8c52aec](https://github.com/kikobeats/acho/commit/8c52aec))
424* Updated README.md to include UMD blurb ([f05d703](https://github.com/kikobeats/acho/commit/f05d703))
425
426
427
428<a name="1.0.2"></a>
429## 1.0.2 (2015-03-17)
430
431
432* 1.0.2 releases ([fa3b7d1](https://github.com/kikobeats/acho/commit/fa3b7d1))
433* Fix example.html, export proper module name to global space ([f6ef959](https://github.com/kikobeats/acho/commit/f6ef959))
434* refactor ([1786df2](https://github.com/kikobeats/acho/commit/1786df2))
435* Removed makefile, added npm script for build ([c441376](https://github.com/kikobeats/acho/commit/c441376))
436* Update README.md ([c61aeb7](https://github.com/kikobeats/acho/commit/c61aeb7))
437* updated ([c217034](https://github.com/kikobeats/acho/commit/c217034))
438* updated mocha reference to local dependency ([7fc622c](https://github.com/kikobeats/acho/commit/7fc622c))
439* Usability changes. Added a makefile for quick task execution. Added component.json so that we can ([9e73dd4](https://github.com/kikobeats/acho/commit/9e73dd4))
440
441
442
443<a name="1.0.1"></a>
444## 1.0.1 (2015-03-16)
445
446
447* 1.0.1 releases ([7b1f9e8](https://github.com/kikobeats/acho/commit/7b1f9e8))
448* added support for styles ([775e84a](https://github.com/kikobeats/acho/commit/775e84a))
449* fixed ([5a37063](https://github.com/kikobeats/acho/commit/5a37063))
450* fixed browserify build and little improvements ([c72b67d](https://github.com/kikobeats/acho/commit/c72b67d))
451* Grammar and styling corrections ([d703e87](https://github.com/kikobeats/acho/commit/d703e87))
452* Merge branch 'master' of github.com:Kikobeats/acho ([c9d3998](https://github.com/kikobeats/acho/commit/c9d3998))
453* Merge pull request #3 from saelfaer/patch-1 ([76d4b66](https://github.com/kikobeats/acho/commit/76d4b66))
454* Update README.md ([45f08d6](https://github.com/kikobeats/acho/commit/45f08d6))
455
456
457
458<a name="1.0.0"></a>
459# 1.0.0 (2015-03-14)
460
461
462* completed ([8d01b7d](https://github.com/kikobeats/acho/commit/8d01b7d))
463* completed ([5b73e9e](https://github.com/kikobeats/acho/commit/5b73e9e))
464* first commit ([edac5ab](https://github.com/kikobeats/acho/commit/edac5ab))
465* fixed url ([9b4d611](https://github.com/kikobeats/acho/commit/9b4d611))
466* merged ([222e72d](https://github.com/kikobeats/acho/commit/222e72d))
467* refactor and updated documentation ([6824d6a](https://github.com/kikobeats/acho/commit/6824d6a))
468* Update README.md ([1194cfa](https://github.com/kikobeats/acho/commit/1194cfa))
469* updated ([14b3639](https://github.com/kikobeats/acho/commit/14b3639))
470* updated ([2a5d5f7](https://github.com/kikobeats/acho/commit/2a5d5f7))
471* updated ([1c12565](https://github.com/kikobeats/acho/commit/1c12565))
472* updated ([68b5472](https://github.com/kikobeats/acho/commit/68b5472))