Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 744a5c8

Browse files
committed
release: Version 0.3.4
Signed-off-by: John Andersen <[email protected]>
1 parent 8814c39 commit 744a5c8

File tree

14 files changed

+13
-15
lines changed

14 files changed

+13
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.3.4] - 2020-02-28
88
### Added
99
- Tensorflow hub NLP models.
1010
- Notes on development dependencies in `setup.py` files to codebase notes.

config/yaml/setup_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
AUTHOR_EMAIL = "[email protected]"
1212
# Install dffml if it is not installed in development mode
1313
INSTALL_REQUIRES = [] + (
14-
["dffml>=0.3.3"]
14+
["dffml>=0.3.4"]
1515
if not any(
1616
list(
1717
map(

dffml/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
88
Version of DFFML
99
"""
10-
VERSION = "0.3.3"
10+
VERSION = "0.3.4"

docs/contributing/codebase.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ You might have asked yourself, what is this thing?
169169
.. code-block:: python
170170
171171
INSTALL_REQUIRES = [] + (
172-
["dffml>=0.3.3"]
172+
["dffml>=0.3.4"]
173173
if not any(
174174
list(
175175
map(

docs/index.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ Output:
3232
You can use DFFML from the command line, Python, or the HTTP API, see the
3333
:doc:`quickstart/model` to get started right away.
3434

35-
The web UI (under heavy development) can be found `here <webui/>`_.
36-
3735
This is the documentation for the latest release, documentation for the master
3836
branch can be found `here <master/index.html>`_.
3937

examples/shouldi/setup_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
AUTHOR_EMAIL = "[email protected]"
1212
# Install dffml if it is not installed in development mode
1313
INSTALL_REQUIRES = [] + (
14-
["dffml>=0.3.3"]
14+
["dffml>=0.3.4"]
1515
if not any(
1616
list(
1717
map(

feature/auth/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = [] + (
22-
["dffml>=0.3.3"]
22+
["dffml>=0.3.4"]
2323
if not any(
2424
list(
2525
map(

feature/git/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = ["python-dateutil>=2.7.3"] + (
22-
["dffml>=0.3.3"]
22+
["dffml>=0.3.4"]
2323
if not any(
2424
list(
2525
map(

model/scikit/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"joblib>=0.13.2",
1515
"pandas>=0.25.0",
1616
] + (
17-
["dffml>=0.3.3"]
17+
["dffml>=0.3.4"]
1818
if not any(
1919
list(
2020
map(

model/scratch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
readme = f.read()
2020

2121
INSTALL_REQUIRES = ["numpy>=1.16.4"] + (
22-
["dffml>=0.3.3"]
22+
["dffml>=0.3.4"]
2323
if not any(
2424
list(
2525
map(

0 commit comments

Comments
 (0)