From 95a8d55a5fddbf62fe4183ec76b3fcf6314313d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=85=89=E6=98=A5?= Date: Wed, 3 Aug 2022 17:29:32 +0800 Subject: [PATCH] - update --- LICENSE | 21 +++++++++++++++++++++ README.md | 17 +++++++++++++++++ go.mod | 4 ++-- go.sum | 6 ++++-- version.go | 2 +- 5 files changed, 45 insertions(+), 5 deletions(-) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ff84bbf --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 李光春 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..d0ca712 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +

+Golang Base64 +

+ +📦 Golang Base64 + +[comment]: <> (go) +[![godoc](https://pkg.go.dev/badge/go.dtapp.net/gobase64?status.svg)](https://pkg.go.dev/go.dtapp.net/gobase64) +[![goproxy.cn](https://goproxy.cn/stats/go.dtapp.net/gobase64/badges/download-count.svg)](https://goproxy.cn/stats/go.dtapp.net/gobase64) +[![goreportcard.com](https://goreportcard.com/badge/go.dtapp.net/gobase64)](https://goreportcard.com/report/go.dtapp.net/gobase64) +[![deps.dev](https://img.shields.io/badge/deps-go-red.svg)](https://deps.dev/go/go.dtapp.net%2Fgobase64) + +#### 安装 + +```go +go get -v -u go.dtapp.net/gobase64 +``` diff --git a/go.mod b/go.mod index b6aeb63..c82b243 100644 --- a/go.mod +++ b/go.mod @@ -2,6 +2,6 @@ module go.dtapp.net/gobase64 go 1.18 -require go.dtapp.net/gophp v1.0.0 +require go.dtapp.net/gophp v1.0.1 -require go.dtapp.net/gostring v1.0.3 // indirect +require go.dtapp.net/gostring v1.0.5 // indirect diff --git a/go.sum b/go.sum index b9db192..e04e739 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,6 @@ go.dtapp.net/gophp v1.0.0 h1:bjAqT8GAI4gfIaBy7JTB41o0vt7nnFEvpcwKAFUDxLU= go.dtapp.net/gophp v1.0.0/go.mod h1:s78OSeHXbBKsTW3YF/JPSQ33wWE3wzplSUNxuwHOvN4= -go.dtapp.net/gostring v1.0.3 h1:KSOq4D77/g5yZN/bqWfZ0kOOaPr/P1240vg03+XdENI= -go.dtapp.net/gostring v1.0.3/go.mod h1:+ggrOvgQDQturi1QGsXEpyRN/ZPoRDaqhMujIk5lrgQ= +go.dtapp.net/gophp v1.0.1 h1:wJ4ZioQavtUvfh73qlrG5Ue1l7Xqg1ZGWZClcRPvQto= +go.dtapp.net/gophp v1.0.1/go.mod h1:IV1SE1bEKoT+cKU5NssMvVKdmLe8qV+V/PCl7NEHF9k= +go.dtapp.net/gostring v1.0.5 h1:6sKrSdQ4so80+zvo+VDZ5pgWGREq2niTLv6GIF++HgY= +go.dtapp.net/gostring v1.0.5/go.mod h1:+ggrOvgQDQturi1QGsXEpyRN/ZPoRDaqhMujIk5lrgQ= diff --git a/version.go b/version.go index 981540a..3c4beee 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package gobase64 -const Version = "1.0.0" +const Version = "1.0.1"