File tree Expand file tree Collapse file tree 7 files changed +11
-5
lines changed Expand file tree Collapse file tree 7 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ pipx run --path restack_get_started/main.py
25
25
## How to release
26
26
27
27
1 . Increment version in all occurences (makefile, pyproject, package.json)
28
- 2 . ` git tag v0.6.13 `
28
+ 2 . ` git tag v0.6.18 `
29
29
3 . ` git push --tags `
30
30
31
31
At this moment, Github detects new version tag and builds and publishes
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ require (
23
23
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
24
24
github.com/muesli/cancelreader v0.2.2 // indirect
25
25
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a // indirect
26
+ github.com/posthog/posthog-go v1.2.24 // indirect
26
27
github.com/rivo/uniseg v0.4.7 // indirect
27
28
golang.org/x/sync v0.8.0 // indirect
28
29
golang.org/x/sys v0.26.0 // indirect
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ github.com/muesli/termenv v0.15.2 h1:GohcuySI0QmI3wN8Ok9PtKGkgkFIk7y6Vpb5PvrY+Wo
42
42
github.com/muesli/termenv v0.15.2 /go.mod h1:Epx+iuz8sNs7mNKhxzH4fWXGNpZwUaJKRS1noLXviQ8 =
43
43
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a h1:2MaM6YC3mGu54x+RKAA6JiFFHlHDY1UbkxqppT7wYOg =
44
44
github.com/muesli/termenv v0.15.3-0.20240618155329-98d742f6907a /go.mod h1:hxSnBBYLK21Vtq/PHd0S2FYCxBXzBua8ov5s1RobyRQ =
45
+ github.com/posthog/posthog-go v1.2.24 h1:A+iG4saBJemo++VDlcWovbYf8KFFNUfrCoJtsc40RPA =
46
+ github.com/posthog/posthog-go v1.2.24 /go.mod h1:uYC2l1Yktc8E+9FAHJ9QZG4vQf/NHJPD800Hsm7DzoM =
45
47
github.com/rivo/uniseg v0.2.0 /go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc =
46
48
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ =
47
49
github.com/rivo/uniseg v0.4.7 /go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88 =
Original file line number Diff line number Diff line change 1
1
BINARY_NAME =restack-get-started
2
- VERSION =0.6.17
2
+ VERSION =0.6.18
3
3
BUILD_DIR =build
4
4
5
5
.PHONY : all linux macos clean
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @restackio/get-started" ,
3
- "version" : " 0.6.17 " ,
3
+ "version" : " 0.6.18 " ,
4
4
"description" : " A getting started command which will help with a first application using Restack framework" ,
5
5
"bin" : {
6
6
"get-started" : " get-started.sh"
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " restackio.get-started"
3
- version = " 0.6.17 "
3
+ version = " 0.6.18 "
4
4
readme = " README.md"
5
5
description = " A package to get started with Restack"
6
6
authors = [
" Your Name <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -19,12 +19,15 @@ type model struct {
19
19
20
20
func main () {
21
21
// Initialize PostHog client
22
- client := posthog .NewWithConfig (
22
+ client , err := posthog .NewWithConfig (
23
23
"phc_QAChHsfb5cq65wolzsxiJ6cZk1V9IcfGqCidBWhaLgK" ,
24
24
posthog.Config {
25
25
Endpoint : "https://us.i.posthog.com" ,
26
26
},
27
27
)
28
+ if err != nil {
29
+ log .Fatal (err )
30
+ }
28
31
defer client .Close ()
29
32
30
33
language := validateLanguage ()
You can’t perform that action at this time.
0 commit comments