Skip to content

Commit

Permalink
Merge branch 'release/v1.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
odinsride committed Jan 5, 2021
2 parents f794b19 + 33b3bc1 commit b678eb0
Show file tree
Hide file tree
Showing 96 changed files with 2,927 additions and 1,578 deletions.
1 change: 1 addition & 0 deletions .ruby-version
@@ -0,0 +1 @@
3.0.0
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] changes

## [v1.8.0] - 2020-01-06

### New
- Accounts can now have an account type, which allows you to specify if the account is a Checking, Savings, Credit Card, or Cash account.
- As a result, accounts are now organized by account type on the main screen
- Additionally, for Credit and Savings accounts you can specify Interest Rate (as well as Credit Limit for Credit Cards), which will be displayed on the account cards and in the transactions list.
- Transfer feature added - for Checking, Savings, and Cash account types, you will now have the option to perform a transfer into another account. Doing so will automatically create the appropriate debit/credit transactions in the source and target accounts.

### Changed
- Stash UI has been revamped and hopefully will be nicer to use :)
- Transactions index page has minor UI improvements
- When uploading a receipt/attachment to a transaction, a loading indicator will now be displayed to indicate something is happening while you wait.

### Chores
- Upgrade to Ruby 3.0.0
- Upgrade to Rails 6.1.0
- Update all dependencies
- Tests have been cleaned up
- New tests created for Stashes and Stash Entires
## [v1.7.3] - 2020-08-27

### New
Expand Down
36 changes: 19 additions & 17 deletions Gemfile
Expand Up @@ -7,35 +7,37 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

ruby '2.6.6'
ruby '3.0.0'

gem 'aws-sdk-s3', '~> 1.69.0'
gem 'devise', '~> 4.7.2'
gem 'aws-sdk-s3', '~> 1.87.0'
gem 'devise', '~> 4.7.3'
gem 'draper', '~> 4.0.1'
gem 'faker', '~> 2.12.0'
gem 'faker', '~> 2.15.1'
gem 'figaro', '~> 1.2.0'
gem 'hiredis'
gem 'invisible_captcha'
gem 'mini_magick', '~> 4.10.1'
gem 'pagy', '~> 3.8.2'
gem 'hiredis', '~> 0.6.3'
gem 'image_processing'
gem 'invisible_captcha', '~> 1.1.0'
gem 'mini_magick', '~> 4.11.0'
gem 'pagy', '~> 3.10.0'
gem 'pg', '~> 1.2.3'
gem 'puma', '~> 4.3.5'
gem 'rails', '~> 6.0.3.2'
gem 'recaptcha'
gem 'puma', '~> 5.1.1'
gem 'rails', '~> 6.1.0'
gem 'recaptcha', '~> 5.6.0'
gem 'redis', '>= 4.0', require: ['redis', 'redis/connection/hiredis']
gem 'stimulus_reflex', '~> 3.2.3'
gem 'webpacker', '~> 5.1.1'
gem 'stimulus_reflex', '~> 3.4.0'
gem 'webpacker', '~> 5.2.1'

group :development, :test do
gem 'capybara'
gem 'database_cleaner', '~> 1.8.5'
gem 'factory_bot_rails', '~> 6.0.0'
gem 'factory_bot_rails', '~> 6.1.0'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rails-controller-testing', '~> 1.0.4'
gem 'rspec-rails', '~> 4.0.1'
gem 'shoulda-matchers', '~> 4.3.0'
gem 'rails-controller-testing', '~> 1.0.5'
gem 'rspec-rails', '~> 4.0.2'
gem 'shoulda-matchers', '~> 4.4.1'
gem 'simplecov', require: false
gem 'webdrivers'
end

group :development do
Expand Down

0 comments on commit b678eb0

Please sign in to comment.