Skip to content

Commit d15cbbc

Browse files
committed
updated replease script and documentation
1 parent 1082eab commit d15cbbc

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
![rxtx data transmission](mast.jpg)
2-
[![irsync Release](https://img.shields.io/github/release/cjimti/rxtx.svg)](https://github.com/cjimti/rxtx/releases)
3-
[![Build Status](https://travis-ci.org/cjimti/rxtx.svg?branch=master)](https://travis-ci.org/cjimti/rxtx)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/cjimti/rxtx)](https://goreportcard.com/report/github.com/cjimti/rxtx)
5-
[![Maintainability](https://api.codeclimate.com/v1/badges/c4cbc94c46027f0e3161/maintainability)](https://codeclimate.com/github/cjimti/rxtx/maintainability)
6-
[![GoDoc](https://godoc.org/github.com/cjimti/irsync/rxtx?status.svg)](https://godoc.org/github.com/cjimti/rxtx/rtq)
7-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fcjimti%2Frxtx.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fcjimti%2Frxtx?ref=badge_shield)
2+
[![irsync Release](https://img.shields.io/github/release/txn2/rxtx.svg)](https://github.com/txn2/rxtx/releases)
3+
[![Build Status](https://travis-ci.org/txn2/rxtx.svg?branch=master)](https://travis-ci.org/txn2/rxtx)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/txn2/rxtx)](https://goreportcard.com/report/github.com/txn2/rxtx)
5+
[![Maintainability](https://api.codeclimate.com/v1/badges/c4cbc94c46027f0e3161/maintainability)](https://codeclimate.com/github/txn2/rxtx/maintainability)
6+
[![GoDoc](https://godoc.org/github.com/txn2/irsync/rxtx?status.svg)](https://godoc.org/github.com/txn2/rxtx/rtq)
7+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Ftxn2%2Frxtx.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Ftxn2%2Frxtx?ref=badge_shield)
88

9-
[![Docker Container Image Size](https://shields.beevelop.com/docker/image/image-size/cjimti/rxtx/latest.svg)](https://hub.docker.com/r/cjimti/irsync/)
10-
[![Docker Container Layers](https://shields.beevelop.com/docker/image/layers/cjimti/rxtx/latest.svg)](https://hub.docker.com/r/cjimti/irsync/)
11-
[![Docker Container Pulls](https://img.shields.io/docker/pulls/cjimti/rxtx.svg)](https://hub.docker.com/r/cjimti/rxtx/)
9+
[![Docker Container Image Size](https://shields.beevelop.com/docker/image/image-size/txn2/rxtx/latest.svg)](https://hub.docker.com/r/txn2/irsync/)
10+
[![Docker Container Layers](https://shields.beevelop.com/docker/image/layers/txn2/rxtx/latest.svg)](https://hub.docker.com/r/txn2/irsync/)
11+
[![Docker Container Pulls](https://img.shields.io/docker/pulls/txn2/rxtx.svg)](https://hub.docker.com/r/txn2/rxtx/)
1212

1313
# rxtx
1414
**rxtx** is a queue based data collector > data transmitter. Useful for online/offline data collection, back pressure buffering or general queuing. **rxtx** uses [bbolt](https://github.com/coreos/bbolt) maintained by CoreOs, a single file database for storing messages before they can be sent.
1515

16-
[rtbeat](https://github.com/cjimti/rtbeat) was developed to consume **rxtx** POST data and publish as events into [elasticsearch], [logstash], [kafka], [redis] or directly to log files.
16+
[rtbeat](https://github.com/txn2/rtbeat) was developed to consume **rxtx** POST data and publish as events into [elasticsearch], [logstash], [kafka], [redis] or directly to log files.
1717

1818
## Test on MacOs
1919

2020
### Install with [brew]
2121
```bash
22-
brew tap cjimti/homebrew-tap
22+
brew tap txn2/homebrew-tap
2323
brew install rxtx
2424
```
2525

@@ -32,11 +32,11 @@ rxtx -h
3232

3333
### Help
3434
```bash
35-
docker run --rm -it cjimti/rxtx -h
35+
docker run --rm -it txn2/rxtx -h
3636
```
3737
on arm 6/7 based device:
3838
```bash
39-
docker run --rm -it cjimti/rxtx:arm32v6-1.0.2 -h
39+
docker run --rm -it txn2/rxtx:arm32v6-1.0.2 -h
4040
```
4141

4242

@@ -121,7 +121,7 @@ goreleaser --skip-publish --rm-dist --skip-validate
121121
- [homebrew]
122122

123123
## License
124-
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fcjimti%2Frxtx.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fcjimti%2Frxtx?ref=badge_large)
124+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Ftxn2%2Frxtx.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Ftxn2%2Frxtx?ref=badge_large)
125125

126126
[homebrew]: https://brew.sh/
127127
[brew]: https://brew.sh/

goreleaser.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dockers:
4747
goarch: amd64
4848
goarm: ''
4949
binary: rxtx
50-
image: cjimti/rxtx
50+
image: txn2/rxtx
5151
dockerfile: dockerfiles/amd64/Dockerfile
5252
tag_templates:
5353
- latest
@@ -57,7 +57,7 @@ dockers:
5757
goarch: arm
5858
goarm: 6
5959
binary: rxtx
60-
image: cjimti/rxtx
60+
image: txn2/rxtx
6161
dockerfile: dockerfiles/arm32v6/Dockerfile
6262
tag_templates:
6363
- "arm32v6-{{ .Version }}"
@@ -66,15 +66,15 @@ brew:
6666
name: rxtx
6767

6868
github:
69-
owner: cjimti
70-
name: homebrew-tap
69+
owner: txn2
70+
name: tap
7171

7272
commit_author:
7373
name: Craig Johnston
7474
email: cjimti@gmail.com
7575

7676
folder: Formula
7777

78-
homepage: https://github.com/cjimti/rxtx
78+
homepage: https://github.com/txn2/rxtx
7979

8080
description: "Data queuing and transmission."

0 commit comments

Comments
 (0)