Skip to content

Commit

Permalink
enable go modules; update CI settings; cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-alrux committed Feb 22, 2019
1 parent dae5f00 commit e8f1afd
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Note: hard-linked into all agext repos - unlink and copy for custom edits

# Ignore docs files
_gh_pages
_site
Expand Down
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# hard-linked into all agext repos - unlink and copy for custom edits
language: go
sudo: false
matrix:
fast_finish: true
include:
- go: 1.8
- go: 1.11.x
env: TEST_METHOD=goveralls
- go: 1.7.5
- go: 1.7.4
- go: 1.7.3
- go: 1.7.2
- go: 1.7.1
- go: 1.7
- go: 1.10.x
- go: tip
- go: 1.9.x
- go: 1.8.x
- go: 1.7.x
- go: 1.6.x
- go: 1.5.x
allow_failures:
- go: tip
- go: 1.9.x
- go: 1.8.x
- go: 1.7.x
- go: 1.6.x
- go: 1.5.x
script: ./test.sh $TEST_METHOD
Expand Down
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Alrux Go EXTensions (AGExt) - package errors
Copyright 2014 ALRUX Inc.
Alrux Go EXTensions (AGExt) - package uuid
Copyright 2015 ALRUX Inc.

This product includes software developed at ALRUX Inc.
(http://www.alrux.com/).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Generate, encode, and decode UUIDs v1, as defined in [RFC 4122](http://www.ietf.

## Project Status

v1.0.1 Stable: Guaranteed no breaking changes to the API in future v1.x releases. Probably safe to use in production, though provided on "AS IS" basis.
v1.1.0 Stable: Guaranteed no breaking changes to the API in future v1.x releases. Probably safe to use in production, though provided on "AS IS" basis.

This package is being actively maintained. If you encounter any problems or have any suggestions for improvement, please [open an issue](https://github.com/agext/uuid/issues). Pull requests are welcome.

Expand Down
14 changes: 14 additions & 0 deletions encoders.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2015 ALRUX Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package uuid

import "encoding/base64"
Expand Down
14 changes: 14 additions & 0 deletions encoders_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2015 ALRUX Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package uuid

import "testing"
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/agext/uuid
2 changes: 0 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# hard-linked into all agext repos - unlink and copy for custom edits

set -ev

if [[ "$1" == "goveralls" ]]; then
Expand Down

0 comments on commit e8f1afd

Please sign in to comment.