Skip to content

Commit

Permalink
Before publishing new package.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimon committed Jul 8, 2016
1 parent 29481d0 commit 72fac5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@ There is a strict order where you can place each features. Between each feature
_mandatory_

```
v1.0.2
v1.0.4
...
```

This feature will define the earliest version that is compatible with the used __Projectfile__ format. All __projects__ versions greater or equal to the defined one will be compatible with the format, but earlier versions may have problems with future features. The first release version is v1.0.2.
This feature will define the earliest version that is compatible with the used __Projectfile__ format. All __projects__ versions greater or equal to the defined one will be compatible with the format, but earlier versions may have problems with future features. The first release version is v1.0.4.

If there are more __Projectfiles__ in your project and the defined versions are different, the smallest version will be used to maximize the functionality.

Expand Down Expand Up @@ -303,7 +303,7 @@ The command body defines what commands __projects__ needs to execute if you invo
The following __Projectfile__ can be generated with the `p (-i|--init)` command:

```
from v1.0.2
from v1.0.4
"""
This is a template Projectfile you have created with the 'p (-i|--init])' command.
Expand Down Expand Up @@ -399,7 +399,7 @@ If you have multiple __Projectfiles__ in your project and there are command head
```
╔═══════════════════════════════════╦═══════════════════════════════════╗
║ $ cat ./Projectfile ║ $ cat ./dir/Projectfile ║
║ from v1.0.2 ║ from v1.0.2
║ from v1.0.4 ║ from v1.0.4
║ my_command: ║ my_command: ║
║ echo "This is the root." ║ echo "This is a subdir." ║
╠═══════════════════════════════════╩═══════════════════════════════════╣
Expand Down Expand Up @@ -444,14 +444,14 @@ The following example will demonstrate this behavior:
```
╔═══════════════════════════════════╦═══════════════════════════════════╗
║ $ cat ./Projectfile ║ $ cat ./A/Projectfile ║
║ from v1.0.2 ║ from v1.0.2
║ from v1.0.4 ║ from v1.0.4
║ my_command: ║ my_command: ║
║ echo "pre root" ║ echo "pre A" ║
║ === ║ === ║
║ echo "post root" ║ echo "post A" ║
╠═══════════════════════════════════╬═══════════════════════════════════╣
║ $ cat ./A/B/Projectfile ║ $ cat ./C/Projectfile ║
║ from v1.0.2 ║ from v1.0.2
║ from v1.0.4 ║ from v1.0.4
║ my_command: ║ my_command: ║
║ echo "listing inside A/B" ║ echo "pre C" ║
║ ls -1 ║ === ║
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='projects',
version='1.0.3',
version='1.0.4',
description='The intuitive project manager',
long_description=("projects is an easy to use project navigation tool "
"and a Makefile-like scripting engine. It's main purpose "
Expand Down

0 comments on commit 72fac5e

Please sign in to comment.