Skip to content

Commit 2f14f3a

Browse files
committed
release v0.7.0
1 parent 3efebb6 commit 2f14f3a

File tree

4 files changed

+247
-8
lines changed

4 files changed

+247
-8
lines changed

.github/workflows/pr-mariadb-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Verify Lando works and we are dogfooding this plugin for tests
5555
run: |
5656
lando version
57-
lando config --path plugins | grep mariadb | grep /home/runner/work/mariadb/mariadb || echo "::error:: Not dogfooding this plugin correctly! "
57+
lando config --path plugins | grep mariadb | grep /home/runner/work/mariadb/mariadb || (echo "::error:: Not dogfooding this plugin correctly!" && exit 1)
5858
5959
# This block should eventually become use lando/actions-leia@v2
6060
# @NOTE? Do we want a way for our leia-action to configure apparmor since

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.7.0 - [December 12, 2022](https://github.com/lando/mariadb/releases/tag/v0.7.0)
2+
* Added bundle-dependencies to release process.
3+
* Fixed bug in plugin dogfooding test.
4+
15
## IN DEVELOPMENT
26

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

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lando/mariadb",
33
"description": "A Lando plugin that provides a tight integration with mariadb.",
4-
"version": "0.6.0",
4+
"version": "0.7.0",
55
"author": "Mike Pirog @pirog",
66
"license": "GPL-3.0",
77
"repository": "lando/mariadb",
@@ -16,7 +16,9 @@
1616
"engines": {
1717
"node": ">=16.0.0"
1818
},
19-
"bundledDependencies": true,
19+
"bundledDependencies": [
20+
"lodash"
21+
],
2022
"lando": {},
2123
"main": "index.js",
2224
"nyc": {
@@ -38,7 +40,7 @@
3840
"docs:build": "vuepress build docs",
3941
"docs:lint": "eslint -c docs/.eslintrc.json --quiet docs/.vuepress",
4042
"lint": "eslint --quiet . && yarn docs:lint",
41-
"release": "bump --prompt --tag --all --push",
43+
"release": "bundle-dependencies update && bump --prompt --tag --all --push",
4244
"test:unit": "nyc --reporter=html --reporter=text mocha --timeout 5000 test/**/*.spec.js",
4345
"test:leia": "yarn leia \"examples/**/README.md\" -c 'Destroy tests' --stdin",
4446
"test": "yarn lint && yarn test:unit"
@@ -50,6 +52,7 @@
5052
"@babel/eslint-parser": "^7.16.0",
5153
"@lando/leia": "^0.6.4",
5254
"@lando/vuepress-theme-default-plus": "1.0.0-beta.44",
55+
"bundle-dependencies": "^1.0.2",
5356
"chai": "^4.3.4",
5457
"command-line-test": "^1.0.10",
5558
"eslint": "^7.32.0",
@@ -60,4 +63,4 @@
6063
"version-bump-prompt": "^4.2.1",
6164
"vuepress": "2.0.0-beta.53"
6265
}
63-
}
66+
}

0 commit comments

Comments
 (0)