Skip to content

Commit 95fbeea

Browse files
authored
Merge pull request #2 from recruit-mp/bump_0.9.1
bumped version to 0.9.1
2 parents 134ab10 + d137294 commit 95fbeea

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.9.0
1+
VERSION=0.9.1
22
TARGETS_NOVENDOR=$(shell glide novendor)
33

44
all: bin/gaurun bin/gaurun_recover

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Gaurun [![GitHub release](https://img.shields.io/github/release/mercari/gaurun.svg?style=flat-square)][release] [![Travis](https://img.shields.io/travis/mercari/gaurun.svg?style=flat-square)][travis]
22

3-
[release]: https://github.com/mercari/gaurun/releases
3+
[release]: https://github.com/recruit-mp/gaurun/releases
44
[travis]: https://travis-ci.org/mercari/gaurun
55

66
<img src="https://raw.githubusercontent.com/mercari/gaurun/master/img/logo.png" alt="logo" align="right"/>
77

88

9-
Gaurun is a general push notification server written in Golang. It proxies push requests to APNs and GCM/FCM and asynchronously executes them via HTTP/2. It helps you when you need to bulkly sends push notification to your users (e.g., when you need to exec 10 million push at once!) or when some other API server which must response quickly needs to push. Since it leverages Golang's powerful concurrent feature, it gives high performance.
9+
Gaurun is a general push notification server written in Golang. It proxies push requests to APNs and GCM/FCM and asynchronously executes them via HTTP/2. It helps you when you need to bulkly sends push notification to your users (e.g., when you need to exec 10 million push at once!) or when some other API server which must response quickly needs to push. Since it leverages Golang's powerful concurrent feature, it gives high performance.
1010

11-
In addition to performance, it's important not to lost pushes over sever crashes or hardware failures. Gaurun can use its access log for kind of transaction journal and can re-push only failed notification later (We provide a special command for this. See [Usage](#usage)).
11+
In addition to performance, it's important not to lost pushes over sever crashes or hardware failures. Gaurun can use its access log for kind of transaction journal and can re-push only failed notification later (We provide a special command for this. See [Usage](#usage)).
1212

1313
Currently we support the following platforms:
1414

@@ -23,15 +23,15 @@ Production ready.
2323

2424
There are two way to install Gaurun; using a precompiled binary or install from source. Downloading a precompiled binary is easiest and recommended.
2525

26-
To install a precompiled binary, download the appropriate zip package for your OS and architecture from [here](https://github.com/mercari/gaurun/releases). Once the zip is downloaded, unzip it and place the binary where you want to use (if you want to access it from the command-line, make sure to put it on `$PATH`).
26+
To install a precompiled binary, download the appropriate zip package for your OS and architecture from [here](https://github.com/recruit-mp/gaurun/releases). Once the zip is downloaded, unzip it and place the binary where you want to use (if you want to access it from the command-line, make sure to put it on `$PATH`).
2727

2828
To compile from source, you need Go1.8 or later (including `$GOPATH` setup) and [glide](https://github.com/Masterminds/glide) for dependency management. After setup, then clone the source code by running the following command,
2929

3030
```bash
3131
$ mkdir -p $GOPATH/src/github.com/mercari
3232
$ cd $GOPATH/src/github.com/mercari
33-
$ git clone https://github.com/mercari/gaurun
34-
```
33+
$ git clone https://github.com/recruit-mp/gaurun
34+
```
3535

3636
To fetch dependencies and build, run the following make tasks,
3737

cmd/gaurun/gaurun.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"syscall"
1414
"time"
1515

16-
"github.com/mercari/gaurun/gaurun"
16+
"github.com/recruit-mp/gaurun/gaurun"
1717
)
1818

1919
const (

cmd/gaurun_recover/gaurun_recover.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"sync"
1313
"time"
1414

15-
"github.com/mercari/gaurun/gaurun"
16-
"github.com/mercari/gaurun/gcm"
15+
"github.com/recruit-mp/gaurun/gaurun"
16+
"github.com/recruit-mp/gaurun/gcm"
1717
)
1818

1919
var (

gaurun/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"time"
77

8-
"github.com/mercari/gaurun/gcm"
8+
"github.com/recruit-mp/gaurun/gcm"
99
)
1010

1111
func keepAliveInterval(keepAliveTimeout int) int {

gaurun/const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package gaurun
22

33
const (
4-
Version = "0.9.0"
4+
Version = "0.9.1"
55
)
66

77
const (

gaurun/global.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gaurun
33
import (
44
"net/http"
55

6-
"github.com/mercari/gaurun/gcm"
6+
"github.com/recruit-mp/gaurun/gcm"
77

88
"go.uber.org/zap"
99
)

gaurun/notification.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync/atomic"
1111
"time"
1212

13-
"github.com/mercari/gaurun/gcm"
13+
"github.com/recruit-mp/gaurun/gcm"
1414

1515
"go.uber.org/zap"
1616
)

glide.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package: github.com/mercari/gaurun
1+
package: github.com/recruit-mp/gaurun
22
import:
33
- package: github.com/BurntSushi/toml
44
version: v0.2.0

0 commit comments

Comments
 (0)