Skip to content

Commit

Permalink
Ready for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviermaridat committed Jan 24, 2018
1 parent f6247ac commit ccd8646
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Version 0.4 - in progress

* [ ] Installation: Create Ubuntu/Snap package (?)
* [x] New action: `qompoter install <packagename>`
* [ ] Feature: Support `--save` option in `qompoter install <packagename>`
* [ ] Support `--save --dev` option in `qompoter install <packagename>`
* [ ] Study: Add specification and study result around `qompoter install` / `qompoter update` / `qompoter install --save` (compare with Composer, npm, yarn)
* [ ] New action: `qompoter install` / `qompoter update` (using lock file)
* [x] Feature: Add `--no-dep` flag to not load dependencies during `qompoter install` or `qompoter install <packagename>` (alias of `--depth 0`)
Expand Down
10 changes: 8 additions & 2 deletions changelogs.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
Qompoter Changelogs
===================

Version 0.4 - in progress
Version 0.4.0 - released 2018-01-24
-----------

* Breaking changes
* Change default repository path to Github and read `QOMP_REPO_PATH` environment variable to select another one
* New action: `qompoter install <packagename>`
* Take care of updating existing lock file in `qompoter install <packagename>`
* Take care or using the same order during lock file update in `qompoter install <packagename>`
* Take care of updating existing vendor.pri in `qompoter install <packagename>`
* Take care or using the same order during vendor.pri update in `qompoter install <packagename>`
* Take care of updating existing date in lock file after `qompoter install <packagename>`
* Auto-detect package version using Qompoter file if missing in `qompoter install <packagename>`
* Support `--save` option in `qompoter install <packagename>`
* Add doc about `qompoter install <packagename>`
* Feature: Improve `qompoter inspect` (show only modified packages by default, now use `--all` to list all of them)
* Feature: Add `--no-dep` flag to not load dependencies during `qompoter install` or `qompoter install <packagename>` (alias of `--depth 0`)
* Feature: Add `--no-dep` flag to not load dependencies during `qompoter install` or `qompoter install <packagename>` (alias of `--depth 1`)
* Feature: Add specific library loader for GitLab forges
* Fix: Do not erase an existing 'vendor.pri' file when a `qompoter install` fail
* Fix: Git remote update was failing when running `qompoter export --repo` on an existing repository
* Fix: Do not load sub-dependencies for library packages
* Fix: Several corrections, maybe not complete, in `downloadLibPackage`

Version 0.3 - released 2017, August
-----------
Expand Down
2 changes: 1 addition & 1 deletion qompoter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

readonly C_PROGNAME=$(basename $0)
readonly C_PROGDIR=$(readlink -m $(dirname $0))
readonly C_PROGVERSION="v0.4.0-alpha"
readonly C_PROGVERSION="v0.4.0"
readonly C_ARGS="$@"
C_OK="\e[1;32m"
C_FAIL="\e[1;31m"
Expand Down

0 comments on commit ccd8646

Please sign in to comment.