From e47361daac5cf5c5d157b6293aaabd6c068bb792 Mon Sep 17 00:00:00 2001 From: Simon Dassow Date: Sat, 14 Oct 2023 13:19:41 +0200 Subject: [PATCH] Adjust namespace for this version for now as upstream takes ages --- README.md | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06e6ab1..84c300d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Go package for atomic file writing -[![Go Reference](https://pkg.go.dev/badge/github.com/natefinch/atomic.svg)](https://pkg.go.dev/github.com/natefinch/atomic) +[![Go Reference](https://pkg.go.dev/badge/github.com/sdassow/atomic.svg)](https://pkg.go.dev/github.com/sdassow/atomic) By default, writing to a file in go (and generally any language) can fail partway through... you then have a partially written file, which probably was @@ -43,7 +43,7 @@ default configuration for the target file. import ( "strings" - "github.com/natefinch/atomic" + "github.com/sdassow/atomic" ) func main() { diff --git a/go.mod b/go.mod index 4b8d336..401ded9 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/natefinch/atomic +module github.com/sdassow/atomic go 1.12