Skip to content

Commit

Permalink
Fix Showing random user for a milestone task in output.
Browse files Browse the repository at this point in the history
  • Loading branch information
turbopape committed Oct 15, 2016
1 parent a297367 commit ae4b1e8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
==========
## 0.2.1
* Fix output if the task is a milestone, don't show the random
generated user.

## 0.2.0
* Add ClojureScript support thanks to the use of reader conditionals,
the same namespaces are used.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,7 @@ and you'd have:
:task-name "Eat toast",
:priority 1},
6
{:resource-id :milestone-user21667,
:achieved 1,
{:achieved 1,
:duration 1,
:predecessors [3],
:begin 9,
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.clojars.turbopape/milestones "0.2.0"
(defproject org.clojars.turbopape/milestones "0.2.1"
:description "Milestones : the Automagic Project Tasks Scheduler"
:url "http://turbopape.github.io/milestones"
:license {:name "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/milestones/dyna_scheduler.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
(if-let [result (run-scheduler curated-tasks
reordering-properties)]
{:errors nil
:result (format-tasks-in-output-schedule result curated-tasks)}
:result (format-tasks-in-output-schedule result tasks)}

{:result nil
:errors :unable-to-schedule}))
Expand Down

0 comments on commit ae4b1e8

Please sign in to comment.