Skip to content

Commit 2cdd174

Browse files
Merge pull request #53 from PyAr/release_2_docs
Release 2 docs
2 parents 88981ba + 3ff88b9 commit 2cdd174

File tree

4 files changed

+43
-12
lines changed

4 files changed

+43
-12
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ What does it do?
1010
----------------
1111

1212
*fades* will automagically create a new virtualenv (or reuse a previous
13-
created one for your script), installing or updating the necessary
14-
dependencies, and execute your script inside that virtualenv, with the
15-
only requirement of executing the script with *fades* and also marking
16-
the required dependencies.
13+
created one), installing the necessary dependencies, and execute
14+
your script inside that virtualenv, with the only requirement
15+
of executing the script with *fades* and also marking the required
16+
dependencies.
1717

1818

1919
How to use it?
@@ -25,9 +25,9 @@ When you write an script, you have to take two special measures:
2525

2626
- need to mark those dependencies
2727

28-
At the moment you execute the script, fades will create (if needed) a
29-
virtualenv, install/update/remove dependencies (if needed), and execute
30-
the script in that environment.
28+
At the moment you execute the script, fades will search a
29+
virtualenv with the marked dependencies, if it doesn't exists
30+
fades will create it, and execute the script in that environment.
3131

3232

3333
How to execute the script with fades?

changelog.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Change Log
2+
==========
3+
4+
All notable changes to fades will be documented in this file.
5+
6+
Release 2.0 [27/02/2015]
7+
------------------------
8+
9+
Changed
10+
~~~~~~~
11+
12+
* Fades stopped using xattr and now is storing venvs metadata on a json encode file. `#29 <https://github.com/PyAr/fades/issues/29>`_
13+
Now you can think fades as a venvs cache. The venv isn't directly linked to a script.
14+
Fades has a venvs database and search in it for a venv that fulfill the marked dependencies
15+
and if it doesn't exist will create one.
16+
* ``pkg_resources`` from ``setuptools`` is now a dependency.
17+
18+
19+
Fixed
20+
~~~~~
21+
22+
* Improvements and fixes on parsing and dependencies comparison. #17, #33, #37, #41, #43 and #50
23+
* Other minors bugs.
24+
25+
Check the full list of issues on this release `here <https://github.com/PyAr/fades/issues?q=is%3Aissue+milestone%3A%22Release+2%22+is%3Aclosed+sort%3Acreated-asc>`_
26+
27+
28+
Release 3.0 [unreleased]
29+
------------------------
30+
31+
Assigned issues to this release `here <https://github.com/PyAr/fades/issues?q=is%3Aopen+is%3Aissue+milestone%3A%22Release+3%22>`_

man/fades.1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ fades \- FAst DEpendencies for Scripts.
1717
.SH DESCRIPTION
1818

1919
\fBfades\fR will automagically create a new virtualenv (or reuse a previous
20-
created one for your script), installing or updating the necessary
21-
dependencies, and execute your script inside that virtualenv, with the
22-
only requirement of executing the script with \fBfades\fR and also marking
23-
the required dependencies.
20+
created one), installing the necessary dependencies, and execute
21+
your script inside that virtualenv, with the only requirement
22+
of executing the script with \fBfades\fR and also marking the required
23+
dependencies.
2424

2525

2626
.SH OPTIONS

pkg/archlinux/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Nicolás Demarchi <mail@gilgamezh.me>
22

33
pkgname=fades
4-
pkgver=1.0
4+
pkgver=2.0
55
pkgrel=1
66
pkgdesc="FAst DEpendencies for Scripts."
77
url="https://github.com/PyAr/fades/"

0 commit comments

Comments
 (0)