Skip to content

Commit 9aa62d0

Browse files
committed
version 3.0.2
1 parent d3c862d commit 9aa62d0

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

Changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 3.0.2 (27 Oct 2020)
2+
bugfixes
3+
4+
### Fixes
5+
- fixed "\u characters in JSON strings are currently not supported" error, triggered by some packages using unicode characters in their file names
6+
- mach-nix cmdline tool didn't use specified python version
7+
- wheel provider was broken for MacOS resulting in 0 available packages
8+
- several issues triggering infinite recursions
9+
10+
111
# 3.0.1 (21 Oct 2020)
212
bugfixes, return missing packages
313

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ Table of Contents
6060
You can either install mach-nix via pip or by using nix in case you already have the nix package manager installed.
6161
#### Installing via pip
6262
```shell
63-
pip install git+git://github.com/DavHau/[email protected].1
63+
pip install git+git://github.com/DavHau/[email protected].2
6464
```
6565
#### Installing via nix
6666
```shell
67-
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.1 -A mach-nix
67+
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.2 -A mach-nix
6868
```
6969

7070
---
@@ -96,7 +96,7 @@ You can call mach-nix directly from a nix expression
9696
let
9797
mach-nix = import (builtins.fetchGit {
9898
url = "https://github.com/DavHau/mach-nix/";
99-
ref = "refs/tags/3.0.1";
99+
ref = "refs/tags/3.0.2";
100100
}) {};
101101
in
102102
mach-nix.mkPython {

examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ every mach-nix expression should begin like this:
4040
let
4141
mach-nix = import (builtins.fetchGit {
4242
url = "https://github.com/DavHau/mach-nix/";
43-
ref = "refs/tags/3.0.1";
43+
ref = "refs/tags/3.0.2";
4444
}) {
4545
# optionally bring your own nixpkgs
4646
# pkgs = import <nixpkgs> {};

mach_nix/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.1
1+
3.0.2

0 commit comments

Comments
 (0)