Skip to content

Commit

Permalink
New distribution [0.8.5]
Browse files Browse the repository at this point in the history
 * universal UUID4 (unique)
 * fixed line sperator guessing
 * updated Travis CI config
  • Loading branch information
JarryShaw committed Nov 27, 2019
1 parent dcbc70c commit 47e9690
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"METH",
"NPROCESSORS",
"Reddit",
"UUIDs",
"Virtualenv",
"XDECREF",
"acceler",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ Raises:

- `ConvertError `-- when `parso.ParserSyntaxError` raised

#### `ConvertError` -- `f2format` internal exception
#### Internal exceptions

```python
class ConvertError(SyntaxError):
pass
"""Parso syntax error."""
```

### Codec
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# basic info
FROM library/ubuntu
LABEL version 0.8.4
LABEL version 0.8.5
LABEL description "Ubuntu Environment for F2FORMAT"

# prepare environment
Expand Down
3 changes: 2 additions & 1 deletion f2format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
"""Back-port compiler for Python 3.6 f-string literals."""

import argparse
import glob
Expand Down Expand Up @@ -31,7 +32,7 @@
del multiprocessing

# version string
__version__ = '0.8.4'
__version__ = '0.8.5'

# from configparser
BOOLEAN_STATES = {'1': True, '0': False,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
long_desc = file.read()

# version string
__version__ = '0.8.4'
__version__ = '0.8.5'

# set-up script for pip distribution
setup(
Expand Down
2 changes: 1 addition & 1 deletion share/f2format.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH F2FORMAT 1 "November 09, 2019" "v0.8.4" ""
.TH F2FORMAT 1 "November 27, 2019" "v0.8.5" ""
.SH NAME
f2format \- back-port compiler for Python 3.6 f-string literals
.
Expand Down
4 changes: 2 additions & 2 deletions share/f2format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ f2format
back-port compiler for Python 3.6 f-string literals
---------------------------------------------------

:Version: v0.8.4
:Date: November 09, 2019
:Version: v0.8.5
:Date: November 27, 2019
:Manual section: 1
:Author:
Jarry Shaw, a newbie programmer, is the author, owner and maintainer
Expand Down

0 comments on commit 47e9690

Please sign in to comment.