From 9aa62d0d03587a2fb0accae70e4c036df51b0e13 Mon Sep 17 00:00:00 2001 From: DavHau Date: Tue, 27 Oct 2020 17:25:57 +0700 Subject: [PATCH] version 3.0.2 --- Changelog.md | 10 ++++++++++ Readme.md | 6 +++--- examples.md | 2 +- mach_nix/VERSION | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 21b7739..eb07817 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/Readme.md b/Readme.md index faef91f..dacef6f 100644 --- a/Readme.md +++ b/Readme.md @@ -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 { diff --git a/examples.md b/examples.md index 3826d25..09ed27a 100644 --- a/examples.md +++ b/examples.md @@ -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 {}; diff --git a/mach_nix/VERSION b/mach_nix/VERSION index 13d683c..d9c62ed 100644 --- a/mach_nix/VERSION +++ b/mach_nix/VERSION @@ -1 +1 @@ -3.0.1 \ No newline at end of file +3.0.2 \ No newline at end of file