Skip to content

Commit 77ea5aa

Browse files
committed
update readme with versioning instructions
fix travis
1 parent abb34bf commit 77ea5aa

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.travis.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ go:
55
- 1.11.x
66

77
env:
8-
- GO111MODULE=on
98
global:
10-
- GO111MODULE=on
9+
- GO111MODULE=on
1110
#GITHUB_TOKEN
12-
secure: "P4YMfllsq/guf5swmBl80IHGvNfUM+5X2b+0LvQQxGJpY9TD6d+PW6U1C90HIT0CDk6UZbtlHyGN+oo+shsWnwMIaM4qmbGdRgtG4TZolXY1QtYQZFW9fTWeHM0wnJeXLV8V4vpTRHnkLrvT8PctbGp5pVOEtcV4y3sEnMP1rkxnMPeHtrDbTlpBmBYEziByEpbg3pe3CE9xVaDD9DqgW7VOOZnQQl7exTtjsIeJYI7OYvdidf/04p632/8WZP2EJbmA2HunfTydWtcD51lCF8V3IvhKKqH4/7sNOKfmUwTDyhLltk9eDcFsYR/FYsy8njH4QDBBrKo/bPq3jzgKF9BY7g28/jMTDY4vDY0Na+4a3+7sDqwdsZ+eiZrgWYUbZ4MwYtpUtcvp8gUz7Avs3v7BBgYsYpgLEW47bT6uNLGO+SdfSwBCYuxT5P0IGCv6wkgYcYgfqVafk+9FiwJlayP2j3wPOdauiYh4WnYX1Rt0zNvaiP5iBhkXwIv3VvUcI1Yu9k0eLDibzZlpR8fkGw3USl+omdjCvXDfJQW1ghMONTm0d7VPG84P/MRhJ+thoh1UwMaT3S0sdPznRnNL6XDntCRT1CZW4l0jfyCPDBW2qw8dWunULYsQZTPWnv4s+BuRRDsfGjyamH5b8evh0TOF+XNOFewmNvflWBNG2y0="
11+
- secure: "P4YMfllsq/guf5swmBl80IHGvNfUM+5X2b+0LvQQxGJpY9TD6d+PW6U1C90HIT0CDk6UZbtlHyGN+oo+shsWnwMIaM4qmbGdRgtG4TZolXY1QtYQZFW9fTWeHM0wnJeXLV8V4vpTRHnkLrvT8PctbGp5pVOEtcV4y3sEnMP1rkxnMPeHtrDbTlpBmBYEziByEpbg3pe3CE9xVaDD9DqgW7VOOZnQQl7exTtjsIeJYI7OYvdidf/04p632/8WZP2EJbmA2HunfTydWtcD51lCF8V3IvhKKqH4/7sNOKfmUwTDyhLltk9eDcFsYR/FYsy8njH4QDBBrKo/bPq3jzgKF9BY7g28/jMTDY4vDY0Na+4a3+7sDqwdsZ+eiZrgWYUbZ4MwYtpUtcvp8gUz7Avs3v7BBgYsYpgLEW47bT6uNLGO+SdfSwBCYuxT5P0IGCv6wkgYcYgfqVafk+9FiwJlayP2j3wPOdauiYh4WnYX1Rt0zNvaiP5iBhkXwIv3VvUcI1Yu9k0eLDibzZlpR8fkGw3USl+omdjCvXDfJQW1ghMONTm0d7VPG84P/MRhJ+thoh1UwMaT3S0sdPznRnNL6XDntCRT1CZW4l0jfyCPDBW2qw8dWunULYsQZTPWnv4s+BuRRDsfGjyamH5b8evh0TOF+XNOFewmNvflWBNG2y0="
1312
install: true
1413

1514
script:
1615
# Fail if a .go file hasn't been formatted with gofmt
17-
- test -z $(gofmt -s -l $(find . -iname '*.go' -type f | grep -v /vendor/ ))
16+
- test -z $(gofmt -s -l $(find . -iname '*.go' -type f))
1817
- make
1918

2019
notifications:
@@ -24,7 +23,7 @@ deploy:
2423
provider: script
2524
skip_cleanup: true
2625
script: ./scripts/deploy.sh
27-
file: bin/ytsync
26+
file: bin/lbry
2827
on:
29-
repo: lbryio/ytsync
28+
repo: lbryio/lbry.go
3029
tags: true

readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ Contributions to this project are welcome, encouraged, and compensated. For more
2020

2121
Make sure you `go fmt` your code before submitting PRs.
2222

23+
## Versioning
24+
25+
This codebase follows the semver standards. You can find the releases [here](https://github.com/lbryio/lbry.go/releases)
26+
27+
You can include the libraries by running `go get github.com/lbryio/lbry.go@latest`.
28+
You can lock (and you should) to a version whenever you make use of this set of libraries.
29+
2330
## License
2431

2532
This project is MIT licensed. For the full license, see [LICENSE](LICENSE).

0 commit comments

Comments
 (0)