This repository has been archived by the owner on Mar 28, 2023. It is now read-only.
Releases: hinoshiba/onamaeddns
Releases · hinoshiba/onamaeddns
v1.1.2
v1.1.1
Function/機能
In English
- Added version tag of docker image latest to the dockerhub, And Updated value of the version to
latest
on docker-compose.yml.
InJapanese
- dockerhubのイメージに、latestを追加しました。そして、docker-compose.ymlが参照するバージョンを
latest
に書き換えました。
RepositryOperation/運用
In English
- Enable GitHub Actions. (Run a build check when PR.)
InJapanese
- GitHub Actions に対応しました。(PR時にbuildのチェックが入るようになりました。)
v1.1.0
In English
- Change path of import.
github.com/hinoshiba/go-onamaeddns/src/onamaeddns
->github.com/hinoshiba/go-onamaeddns
- Added function of
onamaeddns.DialWithContext(context.Context, string, string, string, time.Duration) (*onamaeddns.Client, error)
.
InJapanese
- ImportのPATHが長いので、短くなりました
github.com/hinoshiba/go-onamaeddns/src/onamaeddns
->github.com/hinoshiba/go-onamaeddns
onamaeddns.DialWithContext(context.Context, string, string, string, time.Duration) (*onamaeddns.Client, error)
が追加されました- 既存の、
onamaeddns.Dial(....
に対して、context.Contextの指定ができます
- 既存の、
import example at v1.1.0 and upper
import "github.com/hinoshiba/go-onamaeddns" //import path is **go-**onamaeddns, but package name is **onamaeddns**.
func main() {
....
onamaeddns.<Function>
....
}
v1.0.1
test release: Chage import path.
github.com/hinoshiba/go-onamaeddns/src/onamaeddns
-> github.com/hinoshiba/go-onamaeddns
e.g.
import "github.com/hinoshiba/go-onamaeddns" //import path is **go-**onamaeddns, but package name is **onamaeddns**.
func main() {
....
onamaeddns.<Function>
....
}
v1.0.0
In English
- Support for go.mod.
- Updated version of go-lang (1.17.3) on exec binary.
- Removed workaround of sleep, Since referrer package has Fixed.
In Japanese
- go.modへの対応が完了しました
- 利用するgoのパッケージを更新しました
- 参照元packageのexpect 処理がアップデートされたため、それまで必要だった謎のスリープワークアラウンドを削除できました