Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhargav committed Jul 10, 2023
1 parent cd4c93d commit 04569e6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0

- Vanity import `go.dkinom.dev/baseconv`

## 0.1.0

- Initial development release
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Base conversion](https://raw.githubusercontent.com/godsfood/baseconv/master/.img/baseconv.png)](https://github.com/godsfood/baseconv)

[![Version](https://img.shields.io/github/v/tag/godsfood/baseconv)](https://pkg.go.dev/github.com/godsfood/baseconv)
[![Version](https://img.shields.io/github/v/tag/godsfood/baseconv)](https://pkg.go.dev/go.dkinom.dev/baseconv)
[![Build Status](https://github.com/godsfood/baseconv/actions/workflows/.github/workflows/go.yml/badge.svg?branch=master)](https://github.com/godsfood/baseconv/actions)
[![Coverage Status](https://coveralls.io/repos/github/godsfood/baseconv/badge.svg)](https://coveralls.io/github/godsfood/baseconv)
[![License](https://img.shields.io/badge/license-MIT-green)](https://github.com/godsfood/baseconv/blob/master/LICENSE)
Expand All @@ -12,7 +12,7 @@ A Go module for converting between different bases, e.g., decimal ↔ binary, oc
## Installing

```bash
go get github.com/godsfood/baseconv
go get go.dkinom.dev/baseconv
```

## Usage
Expand Down Expand Up @@ -66,7 +66,7 @@ decimalEmoji, _ := decimalEmojiToHexadecimalConverter.Inverse().Convert("DEADC0D

*`to`* - String of numeral symbols representing the digits of `to` numeral system.

See [documentation](https://pkg.go.dev/github.com/godsfood/baseconv#section-documentation) for more
See [documentation](https://pkg.go.dev/go.dkinom.dev/baseconv#section-documentation) for more

## License

Expand Down
2 changes: 1 addition & 1 deletion alphabet.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package baseconv
package baseconv // import "go.dkinom.dev/baseconv"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion base_conversion.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package baseconv
package baseconv // import "go.dkinom.dev/baseconv"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/godsfood/baseconv"
"go.dkinom.dev/baseconv"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/godsfood/baseconv
module go.dkinom.dev/baseconv

go 1.18

Expand Down

0 comments on commit 04569e6

Please sign in to comment.