Skip to content

Commit

Permalink
🎁 Move items between wishlists
Browse files Browse the repository at this point in the history
πŸ–Œ Add functionality to move items between wishlists
πŸ› οΈ Enable test runs for Linux
  • Loading branch information
edmw committed Mar 8, 2020
1 parent 47f197a commit d33e377
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ identifier_name:
- for
- on
- new
- old
- log
- low
- lhs
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@
- [x.y.z] released version x.y.z

## [..]

## [1.5.0]
- 🎁 Add functionality to move items between wishlists
- πŸ› οΈ Change handling of .env files: already existing env values will have precedence
- πŸ› οΈ Enable test runs for Linux
- πŸ› οΈ Add automatic generation of LinuxMain.swift
- πŸ› οΈ Improve docker scripts
- ☘ Fix references on fluent models (again)
Expand Down
3 changes: 2 additions & 1 deletion Sources/App/Features.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ struct Features: Encodable, CustomDebugStringConvertible, ServiceType {
let signupRestrictions = Feature(date: "2018-10-30", version: "1.0")
let signupInvitations = Feature(date: "2018-12-08", version: "1.0")
let limitNumberOfInvitations = Feature(date: "2018-12-10", version: "1.0")
let invitationEmails = Feature(date: "2020-01-05", version: "1.4")
let signinWithGoogle = Feature(date: "2018-10-20", version: "1.0")
let signinWithNetID = Feature(date: "2019-10-10", version: "1.2")
let userWelcomePage = Feature(date: "2018-10-20", version: "1.0")
Expand All @@ -57,7 +58,7 @@ struct Features: Encodable, CustomDebugStringConvertible, ServiceType {
let createItem = Feature(date: "2018-10-29", version: "1.0")
let limitNumberOfItems = Feature(date: "2018-12-10", version: "1.0")
let deleteItem = Feature(date: "2018-10-29", version: "1.0")
let moveItem = Feature.inDevelopment(true)
let moveItem = Feature(date: "2020-03-08", version: "1.5")
let archiveItem = Feature.inPlanning(.normal)
let showItems = Feature(date: "2018-10-29", version: "1.0")
let sortOrderForItemsOnList = Feature(date: "2019-04-22", version: "1.0")
Expand Down

0 comments on commit d33e377

Please sign in to comment.