Compare commits

...

4 Commits

Author SHA1 Message Date
Jeffrey Wilcke
bf324bd24b VERSION, cmd/geth: bumped version number 1.3.6 2016-04-01 12:12:59 +02:00
Ramesh Nair
a2e1e5c6a0 [release/1.3.6]: cmd/utils: removed password line endings when not using liner.
(cherry picked from commit 6f30034413)
2016-04-01 12:10:02 +02:00
Jeffrey Wilcke
506c927791 Merge pull request #2343 from obscuren/issue-templates-master
templates: added issue template
2016-03-14 23:46:04 +01:00
Jeffrey Wilcke
c0673eefb1 templates: added issue template
(cherry picked from commit a0e2e22a4f)
2016-03-14 23:43:11 +01:00
5 changed files with 24 additions and 3 deletions

20
.github/ISSUE_TEMPLATE.md vendored Normal file
View File

@@ -0,0 +1,20 @@
#### System information
Geth version: `geth version`
OS & Version: Windows/Linux/OSX
Commit hash : (if `develop`)
#### Expected behaviour
#### Actual behaviour
#### Steps to reproduce the behaviour
#### Backtrace
````
[backtrace]
````

View File

@@ -1 +1 @@
1.3.5
1.3.6

View File

@@ -48,10 +48,10 @@ import (
const (
ClientIdentifier = "Geth"
Version = "1.3.5"
Version = "1.3.6"
VersionMajor = 1
VersionMinor = 3
VersionPatch = 5
VersionPatch = 6
)
var (

View File

@@ -91,6 +91,7 @@ func PromptPassword(prompt string, warnTerm bool) (string, error) {
}
fmt.Print(prompt)
input, err := bufio.NewReader(os.Stdin).ReadString('\n')
input = strings.TrimRight(input, "\r\n")
fmt.Println()
return input, err
}