Skip to content

Bump version to 1.1.4 #22

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

Closed
Closed
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
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ the [FreeTDS](http://www.freetds.org/) binaries into your project.
Optionally, set the FreeTDS version in a Heroku config like this:

```bash
heroku config:set FREETDS_VERSION=1.00.109
heroku config:set FREETDS_VERSION=1.3.16
```

Make sure the version you're referencing exists on as a `.tar.gz` file on the [FreeTDS releases](ftp://ftp.freetds.org/pub/freetds/stable/).
Expand Down Expand Up @@ -59,15 +59,16 @@ Use master
heroku buildpacks:set --index 1 https://github.com/rails-sqlserver/heroku-buildpack-freetds
```

or use a stable tag, like [v1.1.3](https://github.com/rails-sqlserver/heroku-buildpack-freetds/tree/v1.1.3)
or use a stable tag, like [v1.1.4](https://github.com/rails-sqlserver/heroku-buildpack-freetds/tree/v1.1.4)

```bash
heroku buildpacks:set --index 1 https://github.com/rails-sqlserver/heroku-buildpack-freetds#v1.1.3
heroku buildpacks:set --index 1 https://github.com/rails-sqlserver/heroku-buildpack-freetds#v1.1.4
```

## Changelog

- HEAD. [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.3...master)
- HEAD. [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.4...master)
- 1.1.4 Escape $PATH to ensure dynamic evaluation [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.3...v.1.1.4)
- 1.1.3 Update to support Heroku 22 ssl versoin [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.2...v.1.1.3)
- 1.1.2 Update FREETDS_VERSION from 1.00.21 to 1.00.109; Get source from https. [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.1...v1.1.2)
- 1.1.1 Fixed build linking. [Diff](https://github.com/rails-sqlserver/heroku-buildpack-freetds/compare/v1.1.0...v1.1.1)
Expand Down
6 changes: 3 additions & 3 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ configure_app_env_vars() {
# tiny_tds extconf.rb uses FREETDS_DIR
# https://github.com/rails-sqlserver/tiny_tds/blob/5046755ca91594003f8b3ca541d136f3ed859973/ext/tiny_tds/extconf.rb#L36-L38
export FREETDS_DIR="${APP_TARGET_DIR}"
export LD_LIBRARY_PATH="${APP_TARGET_DIR}/lib:${LD_LIBRARY_PATH:-/usr/local/lib}"
export LD_RUN_PATH="${APP_TARGET_DIR}/lib:${LD_RUN_PATH:-/usr/local/lib}"
export LIBRARY_PATH="${APP_TARGET_DIR}/lib:${LIBRARY_PATH:-/usr/local/lib}"
export LD_LIBRARY_PATH="${APP_TARGET_DIR}/lib:\${LD_LIBRARY_PATH:-/usr/local/lib}"
export LD_RUN_PATH="${APP_TARGET_DIR}/lib:\${LD_RUN_PATH:-/usr/local/lib}"
export LIBRARY_PATH="${APP_TARGET_DIR}/lib:\${LIBRARY_PATH:-/usr/local/lib}"
export SYBASE="${APP_TARGET_DIR}"
EOF
chmod +x "${BUILD_DIR}/.profile.d/freetds.sh"
Expand Down