Skip to content

Commit

Permalink
Merge pull request #53 from Linkurious/develop
Browse files Browse the repository at this point in the history
Release 1.0.5 [ci:run]
  • Loading branch information
linkurious-infra authored Jan 26, 2023
2 parents a9edb16 + 838be41 commit c92eddc
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.4
current_version = 1.0.5
commit = False
tag = False
serialize =
Expand Down
9 changes: 9 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": [
"github>Linkurious/renovate-config",
"github>Linkurious/renovate-config:meta",
"regexManagers:dockerfileVersions"
],
"baseBranches": ["develop"],
"prConcurrentLimit": 10
}
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.4
1.0.5
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ nodeJob {
projectName = "linkurious/lke-plugin-csv-importer"
runUnitTests = false
runE2eTests = false
runDependencyVersionCheck = false

createGitTag = true
gitTagPrefix = 'v'
Expand All @@ -15,4 +16,6 @@ nodeJob {
binaries = ["lke-plugin-csv-importer.lke"]
groupId = 'com.linkurious.plugins'

githubRelease = true

}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@linkurious/lke-plugin-csv-importer",
"version": "1.0.4",
"version": "1.0.5",
"engines": {
"node": "14.16.1",
"npm": "6.14.12"
Expand All @@ -26,7 +26,7 @@
"build:public": "tsc -b src/public && npm run copy-assets && cd src/public/dist && browserify *.js --debug -o ../../../csv-importer.lke/public/index.js",
"build:backend": "tsc -b src/backend && npm run installProduction",
"build": "npm run build:project && npm pack ./csv-importer.lke && npm run gunzip ",
"gunzip": "gunzip -qf -c linkurious-lke-plugin-csv-importer-$(cat .version).tgz > lke-plugin-csv-importer.lke",
"gunzip": "mkdir -p tmp/github_release && gunzip -qf -c linkurious-lke-plugin-csv-importer-$(cat .version).tgz > lke-plugin-csv-importer.lke && ln -sf $(pwd)/lke-plugin-csv-importer.lke $(pwd)/tmp/github_release/lke-plugin-csv-importer-v$(cat .version).lke",
"plugin:tar": "scripts/postpack.js",
"bump:patch": "bump2version patch && npm version --no-git-tag-version patch",
"bump:minor": "bump2version minor && npm version --no-git-tag-version minor",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv-importer",
"version": "1.0.4",
"version": "1.0.5",
"pluginApiVersion": "1.0.0",
"publicRoute": "public",
"singlePageAppIndex": "index.html",
Expand Down

0 comments on commit c92eddc

Please sign in to comment.