aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-15 18:52:38 +0800
committerobscuren <geffobscura@gmail.com>2014-02-15 18:52:38 +0800
commit60afd02e59a0e6818dafa4697c7776a3ef70c4d0 (patch)
treed7d8985bdd21f9c6bfc8c92d81e67cc7eec3837c
parent73fd358d940418b15dec850f50407bd2e504d88c (diff)
parentfd1aa869e1544fd4d867b8f5a51985e01b692b0d (diff)
downloadgo-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar.gz
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar.bz2
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar.lz
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar.xz
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.tar.zst
go-tangerine-60afd02e59a0e6818dafa4697c7776a3ef70c4d0.zip
Merge branch 'release/0.2.2'
-rw-r--r--LICENSE21
-rw-r--r--README.md9
-rw-r--r--ethutil/config.go2
3 files changed, 29 insertions, 3 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000000000..803f2ef4e
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2013 Geff Obscura
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
index 3bf5697af..f6c49cc2d 100644
--- a/README.md
+++ b/README.md
@@ -43,9 +43,14 @@ This is the Developer package. For the development client please see
Contribution
============
-If you'd like to contribute to Ethereum Go please fork, fix, commit and
+If you'd like to contribute to Eth please fork, fix, commit and
send a pull request. Commits who do not comply with the coding standards
-are ignored.
+are ignored. If you send pull requests make absolute sure that you
+commit on the `develop` branch and that you do not merge to master.
+Commits that are directly based on master are simply ignored.
+
+To make life easier try [git flow](http://nvie.com/posts/a-successful-git-branching-model/) it sets
+this all up and streamlines your work flow.
Coding standards
================
diff --git a/ethutil/config.go b/ethutil/config.go
index 7782e7daa..2a239f8e2 100644
--- a/ethutil/config.go
+++ b/ethutil/config.go
@@ -43,7 +43,7 @@ func ReadConfig(base string) *config {
}
}
- Config = &config{ExecPath: path, Debug: true, Ver: "0.2.1"}
+ Config = &config{ExecPath: path, Debug: true, Ver: "0.2.2"}
Config.Log = NewLogger(LogFile|LogStd, 0)
}