Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.3.0 Release #203

Merged
merged 2 commits into from
Sep 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.2.2] - TBD
## [0.3.0] - 2021-9-5

### Fixed
- Updates PyPi version to latest (#161)

## [0.2.1] - 2016-10-18

### Fixed
- `AUTOENV_CUR_DIR` contains leading double quote (#150)
- Leave `$OLDPWD` intact (#141)
- `AUTOENV_CUR_DIR` contains leading double quote (#150)
- Prevent any alias usage (#144)
- Broken mountpoint detection (#151)
- Add `AUTOENV_ASSUME_YES` (#162)
- Execute `.env.leave` when leaving directory (#167)
- Ensure parent directory of `AUTOENV_AUTH_FILE` exists (#201)
- Improve platform compatibility (#174, #176, #202)

## [0.2.1] - 2016-10-18

Expand Down Expand Up @@ -85,4 +84,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[0.1.0]: https://github.com/inishchith/autoenv/releases/tag/v0.1.0
[0.2.0]: https://github.com/inishchith/autoenv/releases/tag/v0.2.0
[0.2.1]: https://github.com/inishchith/autoenv/releases/tag/v0.2.1
[0.2.2]: https://github.com/inishchith/autoenv
[0.3.0]: https://github.com/inishchith/autoenv/releases/tag/v0.3.0
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,12 @@ Follow the white rabbit:

Install it easily:

### Mac OS X Using Homebrew
### MacOS using Homebrew

$ brew install autoenv
$ echo "source $(brew --prefix autoenv)/activate.sh" >> ~/.bash_profile

### Using pip

$ pip install autoenv
$ echo "source `which activate.sh`" >> ~/.bashrc

### Using git
### Using Git

$ git clone git://github.com/inishchith/autoenv.git ~/.autoenv
$ echo 'source ~/.autoenv/activate.sh' >> ~/.bashrc
Expand All @@ -73,6 +68,8 @@ You need to source activate.sh in your bashrc afterwards:

$ echo 'source /usr/share/autoenv/activate.sh' >> ~/.bashrc

Note that there was previously a [pip](https://pypi.org/project/autoenv) installation option, but it is no longer recommended as the package is severely out of date

## Configuration

Before sourcing activate.sh, you can set the following variables:
Expand Down