Browse Source

v1.4

tags/v0.1.0
Jeremy Latt 10 years ago
parent
commit
bffad06a26
2 changed files with 3 additions and 1 deletions
  1. 2
    0
      ergonomadic.go
  2. 1
    1
      irc/constants.go

+ 2
- 0
ergonomadic.go View File

@@ -15,6 +15,8 @@ func usage() {
15 15
 	fmt.Fprintln(os.Stderr, "  initdb -conf <config>  -- initialize database")
16 16
 	fmt.Fprintln(os.Stderr, "  upgrade -conf <config> -- upgrade database")
17 17
 	fmt.Fprintln(os.Stderr, "  genpasswd <password>   -- bcrypt a password")
18
+	fmt.Fprintln(os.Stderr)
19
+	fmt.Fprintln(os.Stderr, "software version:", irc.SEM_VER)
18 20
 	flag.PrintDefaults()
19 21
 }
20 22
 

+ 1
- 1
irc/constants.go View File

@@ -1,7 +1,7 @@
1 1
 package irc
2 2
 
3 3
 const (
4
-	SEM_VER       = "ergonomadic-1.3.1"
4
+	SEM_VER       = "ergonomadic-1.4"
5 5
 	CRLF          = "\r\n"
6 6
 	MAX_REPLY_LEN = 512 - len(CRLF)
7 7
 

Loading…
Cancel
Save