From ef261db3b66c321798a727ed5a3897d04afbe0a5 Mon Sep 17 00:00:00 2001 From: Tyson Andre Date: Wed, 18 Jul 2018 14:34:44 -0700 Subject: [PATCH] Release uniqush-push 2.6.0 and add more details for NEWS --- NEWS.md | 3 ++- main.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index d7bff6f..276d24b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,12 +1,13 @@ uniqush-push NEWS -?? ??? 2018, uniqush-push 2.6.0 (dev) +18 Jul 2018, uniqush-push 2.6.0 ------------------------------- - Maintenance: Update GCM push URL to the equivalent https://fcm.googleapis.com/fcm/ endpoint (#210) Applications using GCM are unaffected by this change. (The old URL stop working in April 2019) - Maintenance: Upgrade go-redis from v5 to v6. +- Get rid of excessive database locking when fetching subscriptions for a user. - Make the APNS pool size configurable at runtime - Stop overriding Gomaxprocs (removes a call to `runtime.GOMAXPROCS(runtime.NumCPU() + 1)`). This allows users to override this setting. diff --git a/main.go b/main.go index d105de9..895a669 100644 --- a/main.go +++ b/main.go @@ -28,7 +28,7 @@ import ( var uniqushPushConfFlags = flag.String("config", "/etc/uniqush/uniqush-push.conf", "Config file path") var uniqushPushShowVersionFlag = flag.Bool("version", false, "Version info") -var uniqushPushVersion = "uniqush-push 2.6.0-dev" +var uniqushPushVersion = "uniqush-push 2.6.0" func installPushServices() { srv.InstallGCM()