Skip to content

Commit 2f37f8d

Browse files
committed
[RELEASE] Updated project version to v0.0.12
1 parent d2842f5 commit 2f37f8d

File tree

9 files changed

+19
-8
lines changed

9 files changed

+19
-8
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,14 @@ license:
7979
head -n $$license_len $$file | diff -q $(LICENSE_FILE) - > /dev/null || \
8080
( ( cat $(LICENSE_FILE); echo; cat $$file ) > $$file.temp; mv $$file.temp $$file ) \
8181
done
82+
83+
.PHONY: update-go-deps
84+
update-go-deps:
85+
@echo ">> updating Go dependencies"
86+
@cd native && for m in $$(go list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \
87+
go get $$m; \
88+
done
89+
cd native && go mod tidy
90+
ifneq (,$(wildcard native/vendor))
91+
cd native && go mod vendor
92+
endif

helm-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>helm-java</artifactId>

lib/api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>lib-api</artifactId>

lib/darwin-amd64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>darwin-amd64</artifactId>

lib/darwin-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>darwin-arm64</artifactId>

lib/linux-amd64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>linux-amd64</artifactId>

lib/linux-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>linux-arm64</artifactId>

lib/windows-amd64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.marcnuri.helm-java</groupId>
88
<artifactId>helm-java-parent</artifactId>
9-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
9+
<version>0.0.12</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212
<artifactId>windows-amd64</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.marcnuri.helm-java</groupId>
77
<artifactId>helm-java-parent</artifactId>
8-
<version>0.0-SNAPSHOT-SNAPSHOT</version>
8+
<version>0.0.12</version>
99
<packaging>pom</packaging>
1010
<name>Helm Java :: Parent</name>
1111
<description>

0 commit comments

Comments
 (0)