Skip to content

Commit 70a50d0

Browse files
authored
Merge pull request #32 from Linkurious/develop
Release 1.0.6 [ci:run]
2 parents ea866c0 + 0ecf683 commit 70a50d0

9 files changed

Lines changed: 20 additions & 13 deletions

File tree

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.5
2+
current_version = 1.0.6
33
commit = False
44
tag = False
55
serialize =
@@ -8,4 +8,5 @@ serialize =
88
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<build>[\w_-]+\.\d+))?
99

1010
[bumpversion:file:.version]
11+
1112
[bumpversion:file:manifest.json]

.github/renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": [
3+
"github>Linkurious/renovate-config",
4+
"github>Linkurious/renovate-config:meta",
5+
"regexManagers:dockerfileVersions"
6+
],
7+
"baseBranches": ["develop"],
8+
"prConcurrentLimit": 10
9+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ typings/
9292
# Nuxt.js build / generate output
9393
.nuxt
9494
dist
95+
tmp
9596

9697
# Gatsby files
9798
.cache/

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.5
1+
1.0.6

Jenkinsfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ nodeJob {
77
runE2eTests = false
88

99
createGitTag = true
10+
gitTagPrefix = 'v'
11+
runBookeeping = true
1012

1113
//static asset upload
1214
runPrivateNpmPublish = false

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-table",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"pluginApiVersion": "1.0.0",
55
"publicRoute": "public",
66
"singlePageAppIndex": "index.html",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@linkurious/lke-plugin-data-table",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Data-table plugin for Linkurious Enterprise",
55
"main": "index.js",
66
"homepage": "https://github.com/Linkurious/lke-plugin-data-table#readme",
@@ -15,9 +15,9 @@
1515
"scripts": {
1616
"lint": "eslint --fix .",
1717
"lint:ci-deactivated": "eslint -f checkstyle -o reports/checkstyle.xml .",
18-
"build": "npm pack && gunzip -qf -c linkurious-lke-plugin-data-table-$(cat .version).tgz > lke-plugin-data-table.lke",
18+
"build": "mkdir -p tmp/github_release && npm pack && gunzip -qf -c linkurious-lke-plugin-data-table-$(cat .version).tgz > lke-plugin-data-table.lke && ln -sf lke-plugin-data-table.lke tmp/lke-plugin-data-table-v$(cat .version).lke",
1919
"plugin:tar": "scripts/postpack.js",
20-
"upload": "gh release create \"v$(cat .version)\" lke-plugin-data-table.lke",
20+
"manual-upload": "gh release create \"v$(cat .version)\" tmp/lke-plugin-data-table-v$(cat .version).lke",
2121
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
2222
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
2323
"bump:major": "bump2version major && npm version --no-git-tag-version major"

renovate.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)