Skip to content

v0.2.0

Compare
Choose a tag to compare
@natterstefan natterstefan released this 03 Jul 05:27
· 9 commits to master since this release
b457a48

2018/07/03 0.2.0

Added

Changed

  • Breaking: boards config in config.js changed:
// previous config

boards: [
  {
    // ...
    board: 'hello-world', // renamed to 'name'
  },
],
// new config

boards: [
  {
    // ...
    name: 'hello-world', // new property 'name'
    id: 'board-1', // optional, see README
  },
],
  • Breaking: config.js can now contain multiple lists patterns, each list
    will be available in the <ListTabs \/> component and can later be used to
    select a specific list. All filters work as expected and as before (also with
    deeplinking for the list patterns)
// previous config
boards: [
  {
    // ...
    lists: /#upcoming/,
  },
],
// new config
lists: [/#upcoming/],
boards: [
  {
    // does not contain lists anymore
  },
],
  • Note: even though semver would suggest adding releasing a major release, I
    decided to stick to 0.2.y still until further notice.