changing versions to 0.9.4

This commit is contained in:
afeiszli 2022-01-16 10:16:00 -05:00
parent f5299ea338
commit ab37bce748
9 changed files with 9 additions and 9 deletions

View file

@ -8,7 +8,7 @@
<p align="center">
<a href="https://github.com/gravitl/netmaker/releases">
<img src="https://img.shields.io/badge/Version-0.9.3-informational?style=flat-square" />
<img src="https://img.shields.io/badge/Version-0.9.4-informational?style=flat-square" />
</a>
<a href="https://hub.docker.com/r/gravitl/netmaker/tags">
<img src="https://img.shields.io/docker/pulls/gravitl/netmaker" />

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.9.3
image: gravitl/netmaker:v0.9.4
volumes:
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
- /run/systemd/system:/run/systemd/system

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.9.3
image: gravitl/netmaker:v0.9.4
volumes:
- dnsconfig:/root/config/dnsconfig
- /usr/bin/wg:/usr/bin/wg

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.9.3
image: gravitl/netmaker:v0.9.4
volumes:
- /usr/bin/wg:/usr/bin/wg
- sqldata:/root/data

View file

@ -11,7 +11,7 @@ services:
container_name: netmaker
depends_on:
- rqlite
image: gravitl/netmaker:v0.9.3
image: gravitl/netmaker:v0.9.4
volumes: # Volume mounts necessary for CLIENT_MODE to control wireguard networking on host (except dnsconfig, which is where dns config files are stored for use by CoreDNS)
- dnsconfig:/root/config/dnsconfig # Netmaker writes Corefile to this location, which gets mounted by CoreDNS for DNS configuration.
- /usr/bin/wg:/usr/bin/wg

View file

@ -3,7 +3,7 @@ version: "3.4"
services:
netmaker:
container_name: netmaker
image: gravitl/netmaker:v0.9.3
image: gravitl/netmaker:v0.9.4
volumes:
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
- /run/systemd/system:/run/systemd/system

View file

@ -18,7 +18,7 @@ func main() {
app := cli.NewApp()
app.Name = "Netclient CLI"
app.Usage = "Netmaker's netclient agent and CLI. Used to perform interactions with Netmaker server and set local WireGuard config."
app.Version = "v0.9.3"
app.Version = "v0.9.4"
cliFlags := cli_options.GetFlags(ncutils.GetHostname())
app.Commands = cli_options.GetCommands(cliFlags[:])

View file

@ -29,7 +29,7 @@
"OriginalFilename": "",
"PrivateBuild": "",
"ProductName": "Netclient",
"ProductVersion": "v0.9.3.0",
"ProductVersion": "v0.9.4.0",
"SpecialBuild": ""
},
"VarFileInfo": {

View file

@ -113,7 +113,7 @@ func GetAPIConnString() string {
// GetVersion - version of netmaker
func GetVersion() string {
version := "0.9.3"
version := "0.9.4"
if config.Config.Server.Version != "" {
version = config.Config.Server.Version
}