Commit 1172e39f authored by Kirill Smelkov's avatar Kirill Smelkov

fixup! pygolang v0.0.1

- correct CHANGELOG title levels: since readme uses "----" for the
  first level and "~~~~" for the second level, "====" was interpreted as
  the third title level and "Pygolang change history" became
  sub-sub-section of "Additional packages and utilities" with section
  for each version conversely becoming first level. It was not very
  noticeable until 0c5f9d06 (readme: Push "Additional packages and
  utilities" into its own section) started to use "~~~~".
  -> Rework CHANGELOG titling to align with the one in README.

- fix minor markup bits in README.
parent 6d9c27b1
Pygolang change history Pygolang change history
======================= -----------------------
0.0.1 (2019-05-09) 0.0.1 (2019-05-09)
------------------ ~~~~~~~~~~~~~~~~~~
- Add support for nil channels (commit__). - Add support for nil channels (commit__).
...@@ -25,7 +25,7 @@ Pygolang change history ...@@ -25,7 +25,7 @@ Pygolang change history
__ https://lab.nexedi.com/kirr/pygolang/commit/262f8986 __ https://lab.nexedi.com/kirr/pygolang/commit/262f8986
0.0.0.dev8 (2019-03-24) 0.0.0.dev8 (2019-03-24)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Fix `gpython` to properly initialize `sys.path` (commit__). - Fix `gpython` to properly initialize `sys.path` (commit__).
...@@ -46,7 +46,7 @@ Pygolang change history ...@@ -46,7 +46,7 @@ Pygolang change history
__ https://lab.nexedi.com/kirr/pygolang/commit/704d99f0 __ https://lab.nexedi.com/kirr/pygolang/commit/704d99f0
0.0.0.dev7 (2019-01-16) 0.0.0.dev7 (2019-01-16)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Provide `gpython` interpreter, that sets UTF-8 as default encoding, integrates - Provide `gpython` interpreter, that sets UTF-8 as default encoding, integrates
gevent and puts `go`, `chan`, `select` etc into builtin namespace (commit__). gevent and puts `go`, `chan`, `select` etc into builtin namespace (commit__).
...@@ -54,7 +54,7 @@ Pygolang change history ...@@ -54,7 +54,7 @@ Pygolang change history
__ https://lab.nexedi.com/kirr/pygolang/commit/32a21d5b __ https://lab.nexedi.com/kirr/pygolang/commit/32a21d5b
0.0.0.dev6 (2018-12-13) 0.0.0.dev6 (2018-12-13)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Add `strconv` package with `quote` and `unquote` (`commit 1`__, 2__). - Add `strconv` package with `quote` and `unquote` (`commit 1`__, 2__).
...@@ -66,7 +66,7 @@ Pygolang change history ...@@ -66,7 +66,7 @@ Pygolang change history
__ https://lab.nexedi.com/kirr/pygolang/commit/c859940b __ https://lab.nexedi.com/kirr/pygolang/commit/c859940b
0.0.0.dev5 (2018-10-30) 0.0.0.dev5 (2018-10-30)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Fix `select` bug that was causing several cases to be potentially executed - Fix `select` bug that was causing several cases to be potentially executed
at the same time (`commit 1`__, 2__, 3__). at the same time (`commit 1`__, 2__, 3__).
...@@ -93,14 +93,14 @@ Pygolang change history ...@@ -93,14 +93,14 @@ Pygolang change history
0.0.0.dev4 (2018-07-04) 0.0.0.dev4 (2018-07-04)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Add `py.bench` program and `golang.testing` package with corresponding bits (commit__). - Add `py.bench` program and `golang.testing` package with corresponding bits (commit__).
__ https://lab.nexedi.com/kirr/pygolang/commit/9bf03d9c __ https://lab.nexedi.com/kirr/pygolang/commit/9bf03d9c
0.0.0.dev3 (2018-07-02) 0.0.0.dev3 (2018-07-02)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Support both Python2 and Python3; `qq` now does not escape printable UTF-8 - Support both Python2 and Python3; `qq` now does not escape printable UTF-8
characters. (`commit 1`__, 2__, 3__). characters. (`commit 1`__, 2__, 3__).
...@@ -116,7 +116,7 @@ Pygolang change history ...@@ -116,7 +116,7 @@ Pygolang change history
0.0.0.dev2 (2018-06-20) 0.0.0.dev2 (2018-06-20)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Turn into full pygolang: `go`, `chan`, `select`, `method` and `gcompat.qq` - Turn into full pygolang: `go`, `chan`, `select`, `method` and `gcompat.qq`
are provided in addition to `gimport` (commit__). The implementation is are provided in addition to `gimport` (commit__). The implementation is
...@@ -127,7 +127,7 @@ Pygolang change history ...@@ -127,7 +127,7 @@ Pygolang change history
0.0.0.dev1 (2018-05-21) 0.0.0.dev1 (2018-05-21)
----------------------- ~~~~~~~~~~~~~~~~~~~~~~~
- Initial release; `gimport` functionality only (commit__). - Initial release; `gimport` functionality only (commit__).
......
...@@ -177,7 +177,7 @@ Concurrency ...@@ -177,7 +177,7 @@ Concurrency
~~~~~~~~~~~ ~~~~~~~~~~~
In addition to `go` and channels, the following packages are provided to help In addition to `go` and channels, the following packages are provided to help
handle concurrency in structured ways. handle concurrency in structured ways:
- `golang.context` provides contexts to propagate cancellation and task-scoped - `golang.context` provides contexts to propagate cancellation and task-scoped
values among spawned goroutines. values among spawned goroutines.
...@@ -188,7 +188,7 @@ handle concurrency in structured ways. ...@@ -188,7 +188,7 @@ handle concurrency in structured ways.
See `Go Concurrency Patterns: Context`__ for overview of contexts. See `Go Concurrency Patterns: Context`__ for overview of contexts.
__ https://blog.golang.org/context __ https://blog.golang.org/context
String conversion String conversion
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
... ...
""" """
__version__ = "0.0.1" __version__ = "0.0.1.post1"
__all__ = ['go', 'chan', 'select', 'default', 'nilchan', 'defer', 'panic', 'recover', 'func', 'gimport'] __all__ = ['go', 'chan', 'select', 'default', 'nilchan', 'defer', 'panic', 'recover', 'func', 'gimport']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment