Skip to content
Snippets Groups Projects
Commit 9d65fde9 authored by Josh Brooks's avatar Josh Brooks
Browse files

Update versioning

parent a816e64a
No related branches found
No related tags found
1 merge request!3Add StartNotificationBot and CreateNotificationBot calls for refactor
...@@ -15,7 +15,7 @@ import ( ...@@ -15,7 +15,7 @@ import (
) )
// Change this value to set the version for this build // Change this value to set the version for this build
const currentVersion = "1.0.0" const currentVersion = "1.0.1"
func printVersion() { func printVersion() {
fmt.Printf("Elixxir Notifications Server v%s -- %s\n\n", SEMVER, GITVERSION) fmt.Printf("Elixxir Notifications Server v%s -- %s\n\n", SEMVER, GITVERSION)
......
// Code generated by go generate; DO NOT EDIT. // Code generated by go generate; DO NOT EDIT.
// This file was generated by robots at // This file was generated by robots at
// 2020-02-07 15:36:17.501193 -0800 PST m=+0.017704124 // 2020-03-02 10:13:05.153437759 -0800 PST m=+0.006925496
package cmd package cmd
const GITVERSION = `f6d16c0 Merge branch 'xx-1793/ndf-polling' into 'release'` const GITVERSION = `a816e64 Merge branch 'release' into 'hotfix/FixRaceCondition'`
const SEMVER = "1.0.0" const SEMVER = "1.0.1"
const DEPENDENCIES = `module gitlab.com/elixxir/notifications-bot const DEPENDENCIES = `module gitlab.com/elixxir/notifications-bot
go 1.13 go 1.13
require ( require (
cloud.google.com/go/bigquery v1.5.0 // indirect
cloud.google.com/go/firestore v1.1.1 // indirect cloud.google.com/go/firestore v1.1.1 // indirect
cloud.google.com/go/pubsub v1.2.0 // indirect
firebase.google.com/go v3.12.0+incompatible firebase.google.com/go v3.12.0+incompatible
github.com/go-pg/pg v8.0.6+incompatible github.com/go-pg/pg v8.0.6+incompatible
github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/inflection v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/go-homedir v1.1.0
github.com/onsi/ginkgo v1.12.0 // indirect github.com/onsi/ginkgo v1.12.0 // indirect
...@@ -24,20 +24,18 @@ require ( ...@@ -24,20 +24,18 @@ require (
github.com/smartystreets/assertions v1.0.1 // indirect github.com/smartystreets/assertions v1.0.1 // indirect
github.com/spf13/afero v1.2.2 // indirect github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.5 github.com/spf13/cobra v0.0.6
github.com/spf13/jwalterweatherman v1.1.0 github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.2 github.com/spf13/viper v1.6.2
gitlab.com/elixxir/comms v0.0.0-20200207001605-3b6328b48ed1 gitlab.com/elixxir/comms v0.0.0-20200302175324-38213c4553d2
gitlab.com/elixxir/crypto v0.0.0-20200206203107-b8926242da23 gitlab.com/elixxir/crypto v0.0.0-20200206203107-b8926242da23
gitlab.com/elixxir/primitives v0.0.0-20200207225613-9a4445ddec16 gitlab.com/elixxir/primitives v0.0.0-20200226191544-59ff3303abb3
golang.org/x/crypto v0.0.0-20200207205829-a95e85b341fd // indirect golang.org/x/exp v0.0.0-20200228211341-fcea875c7e85 // indirect
golang.org/x/exp v0.0.0-20200207192155-f17229e696bd // indirect golang.org/x/net v0.0.0-20200301022130-244492dfa37a
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 golang.org/x/tools v0.0.0-20200302155637-b1e4e04173e0 // indirect
golang.org/x/tools v0.0.0-20200207224406-61798d64f025 // indirect google.golang.org/api v0.19.0
google.golang.org/api v0.17.0
google.golang.org/genproto v0.0.0-20200207204624-4f3edf09f4f6 // indirect
gopkg.in/ini.v1 v1.52.0 // indirect gopkg.in/ini.v1 v1.52.0 // indirect
mellium.im/sasl v0.0.0-20190815210834-e27ea4901008 // indirect mellium.im/sasl v0.0.0-20190815210834-e27ea4901008 // indirect
) )
......
...@@ -3,12 +3,11 @@ module gitlab.com/elixxir/notifications-bot ...@@ -3,12 +3,11 @@ module gitlab.com/elixxir/notifications-bot
go 1.13 go 1.13
require ( require (
cloud.google.com/go v0.53.0 // indirect cloud.google.com/go/bigquery v1.5.0 // indirect
cloud.google.com/go/datastore v1.1.0 // indirect
cloud.google.com/go/firestore v1.1.1 // indirect cloud.google.com/go/firestore v1.1.1 // indirect
firebase.google.com/go v3.12.0+incompatible firebase.google.com/go v3.12.0+incompatible
github.com/go-pg/pg v8.0.6+incompatible github.com/go-pg/pg v8.0.6+incompatible
github.com/gopherjs/gopherjs v0.0.0-20200209183636-89e6cbcd0b6d // indirect github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/inflection v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/go-homedir v1.1.0
github.com/onsi/ginkgo v1.12.0 // indirect github.com/onsi/ginkgo v1.12.0 // indirect
...@@ -18,19 +17,18 @@ require ( ...@@ -18,19 +17,18 @@ require (
github.com/smartystreets/assertions v1.0.1 // indirect github.com/smartystreets/assertions v1.0.1 // indirect
github.com/spf13/afero v1.2.2 // indirect github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.5 github.com/spf13/cobra v0.0.6
github.com/spf13/jwalterweatherman v1.1.0 github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.2 github.com/spf13/viper v1.6.2
gitlab.com/elixxir/comms v0.0.0-20200214190748-8fb0fc8e259d gitlab.com/elixxir/comms v0.0.0-20200302175324-38213c4553d2
gitlab.com/elixxir/crypto v0.0.0-20200206203107-b8926242da23 gitlab.com/elixxir/crypto v0.0.0-20200206203107-b8926242da23
gitlab.com/elixxir/primitives v0.0.0-20200210205543-5c55c1f6949f gitlab.com/elixxir/primitives v0.0.0-20200226191544-59ff3303abb3
golang.org/x/crypto v0.0.0-20200214034016-1d94cc7ab1c6 // indirect golang.org/x/exp v0.0.0-20200228211341-fcea875c7e85 // indirect
golang.org/x/exp v0.0.0-20200213203834-85f925bdd4d0 // indirect golang.org/x/net v0.0.0-20200301022130-244492dfa37a
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 golang.org/x/tools v0.0.0-20200302155637-b1e4e04173e0 // indirect
golang.org/x/tools v0.0.0-20200214181226-ea829e2eb296 // indirect google.golang.org/api v0.19.0
google.golang.org/api v0.17.0
gopkg.in/ini.v1 v1.52.0 // indirect gopkg.in/ini.v1 v1.52.0 // indirect
mellium.im/sasl v0.0.0-20190815210834-e27ea4901008 // indirect mellium.im/sasl v0.0.0-20190815210834-e27ea4901008 // indirect
) )
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment