We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5497e28 commit c96ee75Copy full SHA for c96ee75
2 files changed
docs/releases/3.10.0.md
@@ -0,0 +1,14 @@
1
+# `21 version 3.10.0` release notes
2
+
3
+*2016-11-14*
4
5
+`21 version 3.10.0` adds some backward-compatible features, and fixes some bugs from previous versions.
6
7
+## Features
8
+- Add support for user-created services in `sell`.
9
+- Add `--all` and `--yes` flags to `publish remove`.
10
+- Add `--no-zt-dep` flag to `sell`.
11
12
+## Bugfixes
13
+- Fix off-by-one bug for payment channels merchant timeout minimum.
14
+- Fix `mkt` bug which expects function to always be called.
two1/__init__.py
@@ -3,7 +3,7 @@
import os.path
-VERSION = (3, 9, 12)
+VERSION = (3, 10, 0)
__version__ = '.'.join(map(str, VERSION))
0 commit comments