Browse Source

bump version to v0.26.0

ffdfgdfg 5 years ago
parent
commit
a0a2cd1d47
4 changed files with 5 additions and 5 deletions
  1. 1 1
      build.sh
  2. 1 1
      docs/_coverpage.md
  3. 1 1
      gui/npc/AndroidManifest.xml
  4. 2 2
      lib/version/version.go

+ 1 - 1
build.sh

@@ -1,5 +1,5 @@
 #/bash/sh
-export VERSION=0.25.4
+export VERSION=0.26.0
 
 sudo apt-get install gcc-mingw-w64-i686
 env GOOS=windows GOARCH=386 CGO_ENABLED=1 CC=i686-w64-mingw32-gcc go build -ldflags "-s -w -extldflags -static -extldflags -static" -buildmode=c-shared -o npc_sdk.dll cmd/npc/sdk.go

+ 1 - 1
docs/_coverpage.md

@@ -1,6 +1,6 @@
 ![logo](logo.svg)
 
-# NPS <small>0.25.4</small>
+# NPS <small>0.26.0</small>
 
 > 一款轻量级、高性能、功能强大的内网穿透代理服务器
 

+ 1 - 1
gui/npc/AndroidManifest.xml

@@ -2,7 +2,7 @@
 <manifest
         xmlns:android="http://schemas.android.com/apk/res/android"
         android:versionCode="1"
-        android:versionName="0.25.4"
+        android:versionName="0.26.0"
         package="org.nps.client"
         platformBuildVersionCode="15"
         platformBuildVersionName="4.0.4-1406430">

+ 2 - 2
lib/version/version.go

@@ -1,8 +1,8 @@
 package version
 
-const VERSION = "0.25.4"
+const VERSION = "0.26.0"
 
 // Compulsory minimum version, Minimum downward compatibility to this version
 func GetVersion() string {
-	return "0.25.0"
+	return "0.26.0"
 }