Skip to content

Commit

Permalink
update module name and deps for github migration; v0.1.1 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-m-knox committed Sep 10, 2024
1 parent 72dbc55 commit c99b547
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

BUILDDIR=build
# make sure to update constants.go's version here too
VER=0.1.0
VER=0.1.1
FILE=finance-planner-tui
BIN=$(BUILDDIR)/$(FILE)-v$(VER)
OUT_BIN_DIR=~/.local/bin
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ This is a terminal user interface-based application (TUI).

## Installation

Either visit the [Releases](https://git.cmcode.dev/cmcode/finance-planner-tui/releases) page to download a precompiled binary, or alternatively, if you have Go installed you can just run `go install`:
Either visit the [Releases](https://github.com/charles-m-knox/finance-planner-tui/releases) page to download a precompiled binary, or alternatively, if you have Go installed you can just run `go install`:

```bash
GOPROXY=direct GOSUMDB=off go install git.cmcode.dev/cmcode/finance-planner-tui@latest
go install github.com/charles-m-knox/finance-planner-tui@latest
```

Then just run
Expand Down
2 changes: 1 addition & 1 deletion actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
"time"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"

"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
Expand Down
4 changes: 2 additions & 2 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"os"
"path"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
"git.cmcode.dev/cmcode/uuid"
lib "github.com/charles-m-knox/finance-planner-lib"
"github.com/charles-m-knox/go-uuid"

"github.com/adrg/xdg"
"gopkg.in/yaml.v3"
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module git.cmcode.dev/cmcode/finance-planner-tui
module github.com/charles-m-knox/finance-planner-tui

go 1.22.5

require (
git.cmcode.dev/cmcode/finance-planner-lib v0.0.0-20240812181646-5a0c4bcc8e1e
git.cmcode.dev/cmcode/uuid v0.0.1
github.com/adrg/xdg v0.5.0
github.com/charles-m-knox/finance-planner-lib v0.0.1
github.com/charles-m-knox/go-uuid v0.0.2
github.com/gdamore/tcell/v2 v2.7.4
github.com/lithammer/fuzzysearch v1.1.8
github.com/rivo/tview v0.0.0-20240807205129-e4c497cc59ed
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
git.cmcode.dev/cmcode/finance-planner-lib v0.0.0-20240812181646-5a0c4bcc8e1e h1:9r8wUO63TIIuaiHpPqlg1qWfGiE2FdjpGEJ880scmx0=
git.cmcode.dev/cmcode/finance-planner-lib v0.0.0-20240812181646-5a0c4bcc8e1e/go.mod h1:SN2P/GmYuMXeIW+QAGcjfq9yT5LDP/SsqbFSTprP/j0=
git.cmcode.dev/cmcode/uuid v0.0.1 h1:EeBhT7bPufbih43obmwa7jJBmPYKRNjCdRrw3Q9LDPE=
git.cmcode.dev/cmcode/uuid v0.0.1/go.mod h1:Ox5s2GqIMNmj/rAFMKuK56gS6miDJexeMiuiTMnYFCU=
github.com/adrg/xdg v0.5.0 h1:dDaZvhMXatArP1NPHhnfaQUqWBLBsmx1h1HXQdMoFCY=
github.com/adrg/xdg v0.5.0/go.mod h1:dDdY4M4DF9Rjy4kHPeNL+ilVF+p2lK8IdM9/rTSGcI4=
github.com/charles-m-knox/finance-planner-lib v0.0.1 h1:LCs2ngE0qyiMOMHl7L28K5s5OecifC+B83pljB6pWNo=
github.com/charles-m-knox/finance-planner-lib v0.0.1/go.mod h1:BVg1Cso1NjOqv7Vo7iwIte/nBpnhyqA70AmPDqGNBvo=
github.com/charles-m-knox/go-uuid v0.0.2 h1:ypob7j0dpeBEXjy1q8mIrrdwxGg8LZOZfmiwPWx+gTw=
github.com/charles-m-knox/go-uuid v0.0.2/go.mod h1:8CiTxJeu4s4uLb8itbezDiO3qrmkk8s3nybi1E0JYrw=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"time"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"

"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
Expand Down
2 changes: 1 addition & 1 deletion models.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"
)

type Profile struct {
Expand Down
2 changes: 1 addition & 1 deletion profiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"time"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"

"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
Expand Down
2 changes: 1 addition & 1 deletion results.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"

"github.com/gdamore/tcell/v2"
"github.com/rivo/tview"
Expand Down
2 changes: 1 addition & 1 deletion transactions.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"
"strings"

lib "git.cmcode.dev/cmcode/finance-planner-lib"
lib "github.com/charles-m-knox/finance-planner-lib"

"github.com/gdamore/tcell/v2"
"github.com/lithammer/fuzzysearch/fuzzy"
Expand Down

0 comments on commit c99b547

Please sign in to comment.