Skip to content

Commit 6fa61ab

Browse files
committed
0.3.1 release
1 parent aa8230c commit 6fa61ab

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Changelog
22

3+
## V0.3.1
4+
- Allow dependency versions with more than 3 digits
5+
- Add checing of python compatibility to `get_version_info`
6+
- Add Brew support
7+
- Fixed various issues that let to some packages not installing
8+
39
## V0.3.0
410
- Misc internal cleanup
511
- Numerous bug fixes and usability enhancements
612
- Fixed several bugs related to dependency parsing
713

814
## v0.2.9
9-
- Pyflow no longer requires updates to use future versions of python.
15+
- Pyflow no longer requires updates to use future versions of python
1016

1117
## v0.2.8
1218
- Fixed some warnings, and check status codes of every subprocess

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyflow"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["David O'Connor <[email protected]>"]
55
description = "A modern Python installation and dependency manager"
66
license = "MIT"

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ and [Pep 518 (pyproject.toml)](https://www.python.org/dev/peps/pep-0518/).
3232

3333
## Installation
3434
- **Windows** - Download and run
35-
[this installer](https://github.com/David-OConnor/pyflow/releases/download/0.3.0/pyflow-0.3.0-x86_64.msi).
35+
[this installer](https://github.com/David-OConnor/pyflow/releases/download/0.3.1/pyflow-0.3.1-x86_64.msi).
3636
Or, if you have [Scoop](https://scoop.sh) installed, run `scoop install pyflow`.
3737

3838
- **Ubuntu, or another Os that uses Snap** - Run `snap install pyflow --classic`.
3939

4040
- **Ubuntu or Debian without Snap** - Download and run
41-
[this deb](https://github.com/David-OConnor/pyflow/releases/download/0.3.0/pyflow_0.3.0_amd64.deb).
41+
[this deb](https://github.com/David-OConnor/pyflow/releases/download/0.3.1/pyflow_0.3.1_amd64.deb).
4242

4343
- **Fedora, CentOs, RedHat, or older versions of SUSE** - Download and run
44-
[this rpm](https://github.com/David-OConnor/pyflow/releases/download/0.3.0/pyflow-0.3.0.x86_64.rpm).
44+
[this rpm](https://github.com/David-OConnor/pyflow/releases/download/0.3.1/pyflow-0.3.1.x86_64.rpm).
4545

4646
- **A different Linux distro** - Download this
47-
[standalone binary](https://github.com/David-OConnor/pyflow/releases/download/0.3.0/pyflow)
47+
[standalone binary](https://github.com/David-OConnor/pyflow/releases/download/0.3.1/pyflow)
4848
and place it somewhere accessible by the PATH. For example, `/usr/bin`.
4949

5050
- **Mac** - Run `brew install pyflow`
@@ -189,7 +189,7 @@ Example contents:
189189
[tool.pyflow]
190190
py_version = "3.7"
191191
name = "runcible"
192-
version = "0.3.0"
192+
version = "0.3.1"
193193
authors = ["John Hackworth <[email protected]>"]
194194

195195
[tool.pyflow.dependencies]
@@ -371,7 +371,7 @@ In order to build and publish your project, additional info is needed in
371371
[tool.pyflow]
372372
name = "everythingkiller"
373373
py_version = "3.6"
374-
version = "0.3.0"
374+
version = "0.3.1"
375375
authors = ["Fraa Erasmas <[email protected]>"]
376376
description = "Small, but packs a punch!"
377377
homepage = "https://everything.math"
@@ -394,7 +394,7 @@ activate = "jeejah:activate"
394394

395395
[tool.pyflow.dependencies]
396396
numpy = "^1.16.4"
397-
manimlib = "0.3.0"
397+
manimlib = "0.3.1"
398398
ipython = {version = "^7.7.0", extras=["qtconsole"]}
399399

400400

snapcraft.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: pyflow
2-
version: 0.3.0
2+
version: 0.3.1
33
license: MIT # todo: This appears to cause the `snapcraft` command to fail.
44
summary: A Python installation and dependency manager.
55
description: |

0 commit comments

Comments
 (0)