Skip to content

Commit b1b208d

Browse files
committed
Fix typo in package name
1 parent a629ca3 commit b1b208d

17 files changed

+36
-26
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [0.0.2] - 2022-11-7
11+
12+
### Added
13+
14+
### Changed
15+
16+
### Fixed
17+
18+
- Fixed typo in package name `github.com/sopherapps/go-scdb` (originally `github.com/sopherapps/go-scbd`)
19+
1020
## [0.0.1] - 2022-11-7
1121

1222
### Added

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ package main
6262

6363
import (
6464
"fmt"
65-
"github.com/sopherapps/go-scbd/scdb"
65+
"github.com/sopherapps/go-scdb/scdb"
6666
"log"
6767
)
6868

@@ -266,7 +266,7 @@ BenchmarkStore_Set/Set_with_ttl:_3600/Set_hola_Spanish-8 116598
266266
BenchmarkStore_Set/Set_with_ttl:_3600/Set_oi_Portuguese-8 118916 10084 ns/op
267267
BenchmarkStore_Set/Set_with_ttl:_3600/Set_mulimuta_Runyoro-8 117501 10001 ns/op
268268
PASS
269-
ok github.com/sopherapps/go-scbd/scdb 69.009s
269+
ok github.com/sopherapps/go-scdb/scdb 69.009s
270270
```
271271

272272
## Acknowledgements

examples/sample.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
"github.com/sopherapps/go-scbd/scdb"
5+
"github.com/sopherapps/go-scdb/scdb"
66
"log"
77
)
88

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sopherapps/go-scbd
1+
module github.com/sopherapps/go-scdb
22

33
go 1.19
44

scdb/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package scdb
22

33
import (
4-
"github.com/sopherapps/go-scbd/scdb/internal/store"
4+
"github.com/sopherapps/go-scdb/scdb/internal/store"
55
)
66

77
// Store is the public interface to the key-value store

scdb/internal/buffers/buffer.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package buffers
22

33
import (
44
"bytes"
5-
"github.com/sopherapps/go-scbd/scdb/internal"
6-
"github.com/sopherapps/go-scbd/scdb/internal/entries"
5+
"github.com/sopherapps/go-scdb/scdb/internal"
6+
"github.com/sopherapps/go-scdb/scdb/internal/entries"
77
"math"
88
)
99

scdb/internal/buffers/buffer_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package buffers
22

33
import (
4-
"github.com/sopherapps/go-scbd/scdb/internal/entries"
4+
"github.com/sopherapps/go-scdb/scdb/internal/entries"
55
"github.com/stretchr/testify/assert"
66
"testing"
77
"time"

scdb/internal/buffers/pool.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package buffers
33
import (
44
"bytes"
55
"errors"
6-
"github.com/sopherapps/go-scbd/scdb/internal"
7-
"github.com/sopherapps/go-scbd/scdb/internal/entries"
6+
"github.com/sopherapps/go-scdb/scdb/internal"
7+
"github.com/sopherapps/go-scdb/scdb/internal/entries"
88
"io"
99
"math"
1010
"os"

scdb/internal/buffers/pool_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package buffers
22

33
import (
44
"bytes"
5-
"github.com/sopherapps/go-scbd/scdb/internal"
6-
"github.com/sopherapps/go-scbd/scdb/internal/entries"
5+
"github.com/sopherapps/go-scdb/scdb/internal"
6+
"github.com/sopherapps/go-scdb/scdb/internal/entries"
77
"github.com/stretchr/testify/assert"
88
"os"
99
"sort"

scdb/internal/entries/db_file_header.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package entries
22

33
import (
44
"fmt"
5-
"github.com/sopherapps/go-scbd/scdb/errors"
6-
"github.com/sopherapps/go-scbd/scdb/internal"
5+
"github.com/sopherapps/go-scdb/scdb/errors"
6+
"github.com/sopherapps/go-scdb/scdb/internal"
77
"math"
88
"os"
99
)

scdb/internal/entries/db_file_header_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package entries
22

33
import (
44
"fmt"
5-
"github.com/sopherapps/go-scbd/scdb/errors"
6-
"github.com/sopherapps/go-scbd/scdb/internal"
5+
"github.com/sopherapps/go-scdb/scdb/errors"
6+
"github.com/sopherapps/go-scdb/scdb/internal"
77
"github.com/stretchr/testify/assert"
88
"math"
99
"os"

scdb/internal/entries/index_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package entries
22

33
import (
44
"fmt"
5-
"github.com/sopherapps/go-scbd/scdb/internal"
5+
"github.com/sopherapps/go-scdb/scdb/internal"
66
"github.com/stretchr/testify/assert"
77
"os"
88
"testing"

scdb/internal/entries/key_value.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package entries
22

33
import (
4-
"github.com/sopherapps/go-scbd/scdb/internal"
4+
"github.com/sopherapps/go-scdb/scdb/internal"
55
"time"
66
)
77

scdb/internal/entries/key_value_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package entries
22

33
import (
44
"fmt"
5-
"github.com/sopherapps/go-scbd/scdb/errors"
6-
"github.com/sopherapps/go-scbd/scdb/internal"
5+
"github.com/sopherapps/go-scdb/scdb/errors"
6+
"github.com/sopherapps/go-scdb/scdb/internal"
77
"github.com/stretchr/testify/assert"
88
"testing"
99
"time"

scdb/internal/store/store.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package store
22

33
import (
4-
"github.com/sopherapps/go-scbd/scdb/errors"
5-
"github.com/sopherapps/go-scbd/scdb/internal"
6-
"github.com/sopherapps/go-scbd/scdb/internal/buffers"
7-
"github.com/sopherapps/go-scbd/scdb/internal/entries"
4+
"github.com/sopherapps/go-scdb/scdb/errors"
5+
"github.com/sopherapps/go-scdb/scdb/internal"
6+
"github.com/sopherapps/go-scdb/scdb/internal/buffers"
7+
"github.com/sopherapps/go-scdb/scdb/internal/entries"
88
"os"
99
"path/filepath"
1010
"time"

scdb/internal/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package internal
33
import (
44
"encoding/binary"
55
"fmt"
6-
"github.com/sopherapps/go-scbd/scdb/errors"
6+
"github.com/sopherapps/go-scdb/scdb/errors"
77
"os"
88
)
99

scdb/internal/utils_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package internal
22

33
import (
4-
"github.com/sopherapps/go-scbd/scdb/errors"
4+
"github.com/sopherapps/go-scdb/scdb/errors"
55
"github.com/stretchr/testify/assert"
66
"testing"
77
)

0 commit comments

Comments
 (0)