Skip to content

Commit

Permalink
prep for v0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
spderosso committed Dec 21, 2016
1 parent d948e16 commit 164734f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,11 @@ way, you can keep using Git, and switch between Git and Gitless seamlessly.
We currently require Git (1.7.12+) to be installed (but this requirement is
going to disappear soon once we finish with our migration to pygit2).

Note to Windows users: we currently have no binary release for Windows. If you
are having trouble getting the latest version to work (we now depend
on [pygit2](https://github.com/libgit2/pygit2) in addition to `git`), you can
try v0.6.2 instead (which depends only
on `git`) and people have managed to get it working.


### Binary releases

Binary releases for Mac OS and Linux are available from the
[Gitless's website](http://gitless.com "Gitless's website"). This is the easiest
way to get Gitless.
[Gitless's website](http://gitless.com "Gitless's website").

If you've downloaded a binary release of Gitless everything is contained in the
gl binary, so to install simply do:
Expand Down Expand Up @@ -82,11 +75,14 @@ Then, just do:

### Installing via Homebrew

If you are using [Homebrew](http://brew.sh/ "Homebrew homepage"), a package manager for Mac OS, then you can simply install Gitless with:
If you are using [Homebrew](http://brew.sh/ "Homebrew homepage"), a package
manager for Mac OS, then you can simply install Gitless with:

```
brew update
brew install gitless
```

Documentation
-------------

Expand All @@ -110,10 +106,6 @@ feedback/questions/suggestions or shoot us an email

If you're planning on submitting code here are some useful things to know:

- We only have two branches, `master` and `develop`. We code in `develop` and
merge the changes onto `master` when the changes are stable and we're ready to
cut a new release. So you'll find on `develop` the latest changes

- We follow (to some extent) the [Google Python Style Guide](
https://google.github.io/styleguide/pyguide.html
"Google Python Style Guide").
Expand Down
2 changes: 1 addition & 1 deletion gitless/cli/gl.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
INTERNAL_ERROR = 3
NOT_IN_GL_REPO = 4

VERSION = '0.8.4'
VERSION = '0.8.5'
URL = 'http://gitless.com'


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import setup


VERSION = '0.8.4'
VERSION = '0.8.5'


# Build helper
Expand Down

0 comments on commit 164734f

Please sign in to comment.