Skip to content

Commit

Permalink
Version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dnrce committed Jun 18, 2015
1 parent 4c9685b commit 4070f4e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* IRC channel: #tracks on Freenode
* Original developer: bsag (http://www.rousette.org.uk/)
* Contributors: https://github.com/TracksApp/tracks/wiki/Contributors
* Version: 2.3.rc1
* Version: 2.3.0

[![Build Status](https://travis-ci.org/TracksApp/tracks.svg?branch=2.3_branch)](https://travis-ci.org/TracksApp/tracks)

Expand Down
2 changes: 1 addition & 1 deletion config/initializers/tracks.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tracks_version='2.3.rc1'
tracks_version='2.3.0'
# comment out next two lines if you do not want (or can not) the date of the
# last git commit in the footer
#info=`git log --pretty=format:"%ai" -1`
Expand Down
2 changes: 1 addition & 1 deletion doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 2.3
## Version 2.3.0

### New and changed features
* Numerous bug fixes
Expand Down
8 changes: 4 additions & 4 deletions doc/upgrading.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Upgrading Tracks

## Upgrading from Tracks 2.2 to 2.3
## Upgrading from Tracks 2.2.x to 2.3.0

To upgrade:

1. Back up your existing database and installation of Tracks
2. Install Tracks 2.3 in a new directory. Or you can create a separate installation of 2.3 for testing purposes.
3. Copy over the configuration from your previous Tracks installation. If using SQLite3, copy the old database into the new Tracks 2.3 directory.
2. Install Tracks 2.3.0 in a new directory. Or you can create a separate installation of 2.3.0 for testing purposes.
3. Copy over the configuration from your previous Tracks installation. If using SQLite3, copy the old database into the new Tracks 2.3.0 directory.
4. Check that you have all dependencies installed: `bundle install --without development test` Or leave out the `--without development test` part if you intend to test or develop on this tree.
5. Run `bundle exec rake db:migrate RAILS_ENV=production` to update your old database to the new schema. This is the point of no return. Make sure you have backups!
6. Precompile your static assets (css, javascript, etc.) by running `bundle exec rake assets:precompile RAILS_ENV=production`.
7. Run `bundle exec rails server -e production` inside your Tracks 2.3 directory to start up Tracks. Or use `-e development` if you intend to try your changes and get more log info.
7. Run `bundle exec rails server -e production` inside your Tracks 2.3.0 directory to start up Tracks. Or use `-e development` if you intend to try your changes and get more log info.

Please note that if you intend to use Tracks with the built in webserver called WEBrick for production, you’ll need to change `config.serve_static_assets` to `true` in `config/environments/production.rb` in order for the images, stylesheets, and javascript files to be served correctly.

Expand Down

0 comments on commit 4070f4e

Please sign in to comment.