version 3.0.2

This commit is contained in:
DavHau 2020-10-27 17:25:57 +07:00
parent d3c862dc3e
commit 9aa62d0d03
4 changed files with 15 additions and 5 deletions

View file

@ -1,3 +1,13 @@
# 3.0.2 (27 Oct 2020)
bugfixes
### Fixes
- fixed "\u characters in JSON strings are currently not supported" error, triggered by some packages using unicode characters in their file names
- mach-nix cmdline tool didn't use specified python version
- wheel provider was broken for MacOS resulting in 0 available packages
- several issues triggering infinite recursions
# 3.0.1 (21 Oct 2020)
bugfixes, return missing packages

View file

@ -60,11 +60,11 @@ Table of Contents
You can either install mach-nix via pip or by using nix in case you already have the nix package manager installed.
#### Installing via pip
```shell
pip install git+git://github.com/DavHau/mach-nix@3.0.1
pip install git+git://github.com/DavHau/mach-nix@3.0.2
```
#### Installing via nix
```shell
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.1 -A mach-nix
nix-env -if https://github.com/DavHau/mach-nix/tarball/3.0.2 -A mach-nix
```
---
@ -96,7 +96,7 @@ You can call mach-nix directly from a nix expression
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix/";
ref = "refs/tags/3.0.1";
ref = "refs/tags/3.0.2";
}) {};
in
mach-nix.mkPython {

View file

@ -40,7 +40,7 @@ every mach-nix expression should begin like this:
let
mach-nix = import (builtins.fetchGit {
url = "https://github.com/DavHau/mach-nix/";
ref = "refs/tags/3.0.1";
ref = "refs/tags/3.0.2";
}) {
# optionally bring your own nixpkgs
# pkgs = import <nixpkgs> {};

View file

@ -1 +1 @@
3.0.1
3.0.2