Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
Adding CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Thoemmes committed Nov 27, 2019
1 parent d10f63c commit f20a6b5
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
16 changes: 9 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
language: node_js
node_js:
- "stable"
- "5"
- "5.1"
- "6"
- "lts/*"
- "node"
- "12"
- "11"
- "10"
- "9"

env:
- ENV="development"

install:
- npm install

before_script:
- npm install -g gulp

install:
- npm install

after_success: 'npm run coveralls'

script: npm test
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
0.1.0 - 11/27/2019

- Adapting to changes in gulp 4.0 (#9)
- Removing CI tests for older Node.js versions below 5.x.
- Removing support for Node below 9.x.

0.0.4 - 11/11/2016

- task() and module() may take absolute or relative paths
- using a fork of [node-introspect](https://github.com/orzarchi/node-introspect.git) instead of [parse-function](https://github.com/tunnckoCore/parse-function)
- adopting [https://github.com/Flet/semistandard](semistandard) style

0.0.33 - 05/03/2016

- Updating depencendies and adapting to changes

0.0.32 - 04/02/2016

- Correcting an example in this file

0.0.31 - 03/13/2016

- options.argv for "runningTasks" test
- options.parentDir
- updating documentation
- extending test suite, adding code coverage report

0.0.3 - 03/12/2016

- ES2015 rewrite
- CI using Travis
- using and providing [lodash](https://github.com/lodash/lodash) by default
- Adding "standardTask" and "getPath" helpers
- supporting [gulp-load-plugins](https://www.npmjs.com/package/gulp-load-plugins)'s lazy loading of gulp plugins

0.0.2 - 02/01/2016

- Updating dependencies
- Adding "runningTasks" helper function
- Exposing gulp-util as "gutil" by default
- Parsing of multi-line comments rewritten
- added new options : noModules, noBuiltin, noRunningTasks
- ES2015+ support with [parse-function](https://github.com/tunnckoCore/parse-function)

0.0.1 - 12/20/2015

- Initial release, incorporating Resolver and tests from [dijs](https://www.npmjs.com/package/dijs).
51 changes: 1 addition & 50 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,55 +479,6 @@ let di = require('gulp-di')(gulp, {
});
````

## Changelog

0.1.0 - 11/27/2019

- Adapting to changes in gulp 4.0 (#9)
- Removing CI tests for older Node.js versions below 5.x

0.0.4 - 11/11/2016

- task() and module() may take absolute or relative paths
- using a fork of [node-introspect](https://github.com/orzarchi/node-introspect.git) instead of [parse-function](https://github.com/tunnckoCore/parse-function)
- adopting [https://github.com/Flet/semistandard](semistandard) style

0.0.33 - 05/03/2016

- Updating depencendies and adapting to changes

0.0.32 - 04/02/2016

- Correcting an example in this file

0.0.31 - 03/13/2016

- options.argv for "runningTasks" test
- options.parentDir
- updating documentation
- extending test suite, adding code coverage report

0.0.3 - 03/12/2016

- ES2015 rewrite
- CI using Travis
- using and providing [lodash](https://github.com/lodash/lodash) by default
- Adding "standardTask" and "getPath" helpers
- supporting [gulp-load-plugins](https://www.npmjs.com/package/gulp-load-plugins)'s lazy loading of gulp plugins

0.0.2 - 02/01/2016

- Updating dependencies
- Adding "runningTasks" helper function
- Exposing gulp-util as "gutil" by default
- Parsing of multi-line comments rewritten
- added new options : noModules, noBuiltin, noRunningTasks
- ES2015+ support with [parse-function](https://github.com/tunnckoCore/parse-function)

0.0.1 - 12/20/2015

- Initial release, incorporating Resolver and tests from [dijs](https://www.npmjs.com/package/dijs).

## Licence
## License

MIT

0 comments on commit f20a6b5

Please sign in to comment.