Skip to content

Commit

Permalink
release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Dec 13, 2022
1 parent 8229d13 commit 499874d
Show file tree
Hide file tree
Showing 4 changed files with 247 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-laravel-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
lando --clear
lando version
lando config --path plugins | grep laravel | grep /home/runner/work/laravel/laravel || echo "::error:: Not dogfooding this plugin correctly! "
lando config --path plugins | grep laravel | grep /home/runner/work/laravel/laravel || (echo "::error:: Not dogfooding this plugin correctly!" && exit 1)
# This block should eventually become use lando/actions-leia@v2
# @NOTE? Do we want a way for our leia-action to configure apparmor since
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.7.0 - [December 12, 2022](https://github.com/lando/laravel/releases/tag/v0.7.0)
* Added bundle-dependencies to release process.
* Fixed bug in plugin dogfooding test.

## v0.6.0 - [September 8, 2022](https://github.com/lando/laravel/releases/tag/v0.6.0)

* HYPERDRIVED
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lando/laravel",
"description": "A Lando plugin that provides a tight integration with Laravel.",
"version": "0.6.0",
"version": "0.7.0",
"author": "Mike Pirog @pirog",
"license": "GPL-3.0",
"repository": "lando/laravel",
Expand All @@ -16,7 +16,9 @@
"engines": {
"node": ">=16.0.0"
},
"bundledDependencies": true,
"bundledDependencies": [
"lodash"
],
"lando": {},
"main": "index.js",
"nyc": {
Expand All @@ -38,7 +40,7 @@
"docs:build": "vuepress build docs",
"docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
"lint": "eslint --quiet . && yarn docs:lint",
"release": "bump --prompt --tag --all --push",
"release": "bundle-dependencies update && bump --prompt --tag --all --push",
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
"test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
"test": "yarn lint && yarn test:unit"
Expand All @@ -50,6 +52,7 @@
"@babel/eslint-parser": "^7.16.0",
"@lando/leia": "^0.6.4",
"@lando/vuepress-theme-default-plus": "1.0.0-beta.44",
"bundle-dependencies": "^1.0.2",
"chai": "^4.3.4",
"command-line-test": "^1.0.10",
"eslint": "^7.32.0",
Expand All @@ -60,4 +63,4 @@
"version-bump-prompt": "^4.2.1",
"vuepress": "2.0.0-beta.53"
}
}
}
Loading

0 comments on commit 499874d

Please sign in to comment.