Skip to content

Commit d73fcd2

Browse files
authored
Merge pull request #303 from srid/release-0.6
Release 0.6.0.0
2 parents 6923b6e + 31756d8 commit d73fcd2

File tree

3 files changed

+30
-24
lines changed

3 files changed

+30
-24
lines changed

CHANGELOG.md

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,30 @@
11
# Change Log for neuron
22

3-
## 0.5.0.0 (UNRELEASED)
4-
5-
NOTE: This section is largely out of date. Checkout the PR and commit history.
3+
## 0.6.0.0
64

75
- Markdown: switch to Pandoc, and commonmark (with [extensions](https://github.com/jgm/commonmark-hs/tree/master/commonmark-extensions)). #166
86
- Markdown parsing is consequently less strict and more permissive
9-
- With this change, neuron can potentially support other text formats (org,
10-
reST, etc.)
11-
- Switch to GHC 8.6 (for reflex-dom)
12-
- Raw HTML support (#191)
13-
- Introduce new "uplink tree" view (#195)
14-
- Resilient error handling (#202, #215)
15-
- Added `neuron query --graph` to get the entire graph as JSON export
16-
- YAML block is now optional; title is also optional, while native Markdown H1 titles are now supported (#230)
7+
- With this change, neuron can potentially support other text formats (experimental org support already in)
8+
- Raw HTML support (#191)
9+
- YAML block is now optional; title is also optional, while native Markdown H1 titles are now supported (#230)
10+
- Web Interface
11+
- Introduce new "uplink tree" view, replacing connections pane (#195)
12+
- Allow customizing favicon
13+
- z-index: Allow cycles (#248)
14+
- z-index: display parse and query errors (#220, #221)
15+
- CLI:
16+
- Resilient error handling (#202, #215)
17+
- Added `neuron query --graph` to get the entire graph as JSON export
18+
- Add backlinks query (#216)
19+
- Add bash/zsh shell completion (#239)
20+
- neuron new: title is optional (#232)
1721
- Bug fixes
1822
- Fix 'neuron new' generating invalid Markdown when title contains special characters (#163)
23+
- Allow custom CLI in $EDITOR (#227)
24+
- Others
25+
- Reduce install size (#240)
26+
- Nightly docker releases
27+
- Automatic publishing through [neuron-template](https://github.com/srid/neuron-template)
1928

2029
## 0.4.0.0
2130

neuron/neuron.cabal

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
name: neuron
33
-- This version must be in sync with what's in Default.dhall
4-
version: 0.5.11.2
4+
version: 0.6.0.0
55
license: AGPL-3.0-only
66
copyright: 2020 Sridhar Ratnakumar
77
maintainer: srid@srid.ca
@@ -13,9 +13,6 @@ synopsis:
1313
Future-proof system for plain-text notes.
1414
description:
1515
neuron is a future-proof system for managing your plain-text Zettelkasten notes.
16-
extra-source-files:
17-
README.md
18-
CHANGELOG.md
1916
data-files:
2017
src-js/search.js
2118
src-bash/neuron-search
@@ -131,7 +128,7 @@ common app-common
131128
skylighting-core,
132129
relude,
133130
iso8601-time,
134-
rib ^>=0.12,
131+
rib >=0.12,
135132
shake -any,
136133
time,
137134
text,

neuron/test/Neuron/VersionSpec.hs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ spec = do
2323
isLesserOrEqual = shouldNotSatisfy
2424
it "simple versions" $ do
2525
-- If the user requires 0.4, and we are "older than" than that, fail (aka. isGreater)
26-
"0.6" `isGreater` olderThan
27-
"0.5" `isLesserOrEqual` olderThan -- This is current version
26+
"0.7" `isGreater` olderThan
27+
"0.6" `isLesserOrEqual` olderThan -- This is current version
2828
"0.4" `isLesserOrEqual` olderThan
2929
it "full versions" $ do
30-
"0.6.1.2" `isGreater` olderThan
31-
"0.5.12" `isGreater` olderThan
32-
"0.5.11.8" `isGreater` olderThan
33-
"0.5.11.0" `isLesserOrEqual` olderThan -- This is current version
30+
"0.7.1.2" `isGreater` olderThan
31+
"0.6.12" `isGreater` olderThan
32+
"0.6.11.8" `isGreater` olderThan
33+
"0.6.0.0" `isLesserOrEqual` olderThan -- This is current version
3434
"0.3.1.0" `isLesserOrEqual` olderThan
3535
it "within same major version" $ do
36-
"0.5.11.8" `isGreater` olderThan
37-
"0.5.11.0" `isLesserOrEqual` olderThan -- This is current version
36+
"0.6.11.8" `isGreater` olderThan
37+
"0.6.0.0" `isLesserOrEqual` olderThan -- This is current version

0 commit comments

Comments
 (0)