Skip to content

Commit

Permalink
Changelog, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden committed Mar 24, 2017
1 parent 6accdaf commit 8e134a5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 7.8.0
-------------

* Added `plz export` command which exports a subset of the repo and its dependencies
to an arbitrary directory.
* Updating has a progress bar
* Fixed some subtle linking issues in the compiled artifacts.


Version 7.7.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.1
7.8.0
4 changes: 2 additions & 2 deletions src/parse/rules/python_rules.build_defs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def python_wheel(name, version=None, src=None, hashes=None, package_name=None, o
package_name (str): If given, overrides `name` for the name of the package to look for.
outs (list): List of output files. Defaults to a directory named the same as `name`.
post_install_commands (list): Commands to run after 'install'.
patch (src | list): Patch file to apply after install to fix any upstream code that has
patch (str | list): Patch file to apply after install to fix any upstream code that has
done bad things.
licences (list): Licences that this rule is subject to.
test_only (bool): If True, this library can only be used by tests.
Expand All @@ -404,7 +404,7 @@ def python_wheel(name, version=None, src=None, hashes=None, package_name=None, o
"""
outs = outs or [name]
deps = deps or []
package_name = package_name or name
package_name = package_name or name.replace('-', '_')
url_base = repo or CONFIG.PYTHON_WHEEL_REPO
if not url_base:
raise ParseError('python.wheel_repo is not set in the config, must pass repo explicitly '
Expand Down

0 comments on commit 8e134a5

Please sign in to comment.