Skip to content
This repository has been archived by the owner on May 31, 2020. It is now read-only.

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolaiwarner committed May 22, 2019
1 parent 2092a2e commit 130f335
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

## [2.0.0] - 2019-05-22
### Update 🎉
- Updates to cabal-core 5! This is a breaking change to support the latest fixes in cabal-core. Cabal users will need to use this version and up or cabal-cli at version 6.0.0+ going forward.
### Added
- Cabal version information on cabal select screen

## [1.0.5] - 2019-05-08
### Added
- Updates to latest cabal-core, including support for 1000 max feeds
- Updates to latest cabal-core, including support for 1000 max feeds

## [1.0.4] - 2019-02-24
### Fixed
Expand Down
7 changes: 6 additions & 1 deletion src/renderer/views/cabals.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const { clipboard, ipcRenderer, remote } = window.require('electron')
var avatar = require('./avatar')

var appVersion = remote.app.getVersion()
var cabalCoreVersion = '5'
var TITLE = 'Cabal Mini'

// Get initial state
Expand Down Expand Up @@ -52,7 +53,11 @@ module.exports = function (state, emit) {
`
})}
</div>
<div class="pa4 f6 hover-dark-pink black-20">version ${appVersion}</div>
<div class="pa4 f6 hover-dark-pink black-20">
cabal mini version: ${appVersion}
<br>
cabal-core version: ${cabalCoreVersion}
</div>
</body>
`

Expand Down

0 comments on commit 130f335

Please sign in to comment.