Commit b1b208d 1 parent a629ca3 commit b1b208d Copy full SHA for b1b208d
File tree 17 files changed +36
-26
lines changed
17 files changed +36
-26
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
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
+
10
20
## [ 0.0.1] - 2022-11-7
11
21
12
22
### Added
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ package main
62
62
63
63
import (
64
64
" fmt"
65
- " github.com/sopherapps/go-scbd /scdb"
65
+ " github.com/sopherapps/go-scdb /scdb"
66
66
" log"
67
67
)
68
68
@@ -266,7 +266,7 @@ BenchmarkStore_Set/Set_with_ttl:_3600/Set_hola_Spanish-8 116598
266
266
BenchmarkStore_Set/Set_with_ttl:_3600/Set_oi_Portuguese-8 118916 10084 ns/op
267
267
BenchmarkStore_Set/Set_with_ttl:_3600/Set_mulimuta_Runyoro-8 117501 10001 ns/op
268
268
PASS
269
- ok github.com/sopherapps/go-scbd /scdb 69.009s
269
+ ok github.com/sopherapps/go-scdb /scdb 69.009s
270
270
```
271
271
272
272
## Acknowledgements
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package main
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/sopherapps/go-scbd /scdb"
5
+ "github.com/sopherapps/go-scdb /scdb"
6
6
"log"
7
7
)
8
8
Original file line number Diff line number Diff line change 1
- module github.com/sopherapps/go-scbd
1
+ module github.com/sopherapps/go-scdb
2
2
3
3
go 1.19
4
4
Original file line number Diff line number Diff line change 1
1
package scdb
2
2
3
3
import (
4
- "github.com/sopherapps/go-scbd /scdb/internal/store"
4
+ "github.com/sopherapps/go-scdb /scdb/internal/store"
5
5
)
6
6
7
7
// Store is the public interface to the key-value store
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package buffers
2
2
3
3
import (
4
4
"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"
7
7
"math"
8
8
)
9
9
Original file line number Diff line number Diff line change 1
1
package buffers
2
2
3
3
import (
4
- "github.com/sopherapps/go-scbd /scdb/internal/entries"
4
+ "github.com/sopherapps/go-scdb /scdb/internal/entries"
5
5
"github.com/stretchr/testify/assert"
6
6
"testing"
7
7
"time"
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ package buffers
3
3
import (
4
4
"bytes"
5
5
"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"
8
8
"io"
9
9
"math"
10
10
"os"
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package buffers
2
2
3
3
import (
4
4
"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"
7
7
"github.com/stretchr/testify/assert"
8
8
"os"
9
9
"sort"
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package entries
2
2
3
3
import (
4
4
"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"
7
7
"math"
8
8
"os"
9
9
)
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package entries
2
2
3
3
import (
4
4
"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"
7
7
"github.com/stretchr/testify/assert"
8
8
"math"
9
9
"os"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package entries
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/sopherapps/go-scbd /scdb/internal"
5
+ "github.com/sopherapps/go-scdb /scdb/internal"
6
6
"github.com/stretchr/testify/assert"
7
7
"os"
8
8
"testing"
Original file line number Diff line number Diff line change 1
1
package entries
2
2
3
3
import (
4
- "github.com/sopherapps/go-scbd /scdb/internal"
4
+ "github.com/sopherapps/go-scdb /scdb/internal"
5
5
"time"
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ package entries
2
2
3
3
import (
4
4
"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"
7
7
"github.com/stretchr/testify/assert"
8
8
"testing"
9
9
"time"
Original file line number Diff line number Diff line change 1
1
package store
2
2
3
3
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"
8
8
"os"
9
9
"path/filepath"
10
10
"time"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package internal
3
3
import (
4
4
"encoding/binary"
5
5
"fmt"
6
- "github.com/sopherapps/go-scbd /scdb/errors"
6
+ "github.com/sopherapps/go-scdb /scdb/errors"
7
7
"os"
8
8
)
9
9
Original file line number Diff line number Diff line change 1
1
package internal
2
2
3
3
import (
4
- "github.com/sopherapps/go-scbd /scdb/errors"
4
+ "github.com/sopherapps/go-scdb /scdb/errors"
5
5
"github.com/stretchr/testify/assert"
6
6
"testing"
7
7
)
You can’t perform that action at this time.
0 commit comments