about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README19
-rw-r--r--README.org8
2 files changed, 23 insertions, 4 deletions
diff --git a/README b/README
index 49b5bea..dbfd10d 100644
--- a/README
+++ b/README
@@ -21,8 +21,9 @@ Table of Contents
 .. 3. Project Structure
 5. Bugs
 6. News
-.. 1. v0.1.1 - 2021-11-16
-.. 2. v0.1.0 - 2021-11-03
+.. 1. v0.2.0 - 2021-11-25
+.. 2. v0.1.1 - 2021-11-16
+.. 3. v0.1.0 - 2021-11-03
 
 
 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -256,7 +257,17 @@ Writings:
 6 News
 ══════
 
-6.1 v0.1.1 - 2021-11-16
+6.1 v0.2.0 - 2021-11-25
+───────────────────────
+
+  ⁃ Add demo videos.
+  ⁃ Add more solutions.
+  ⁃ Implement BFS in Java.
+  ⁃ Implement DFS in Raku.
+  ⁃ Add basic tests.
+
+
+6.2 v0.1.1 - 2021-11-16
 ───────────────────────
 
   ⁃ Add option to skip generating slideshow.
@@ -269,7 +280,7 @@ Writings:
   ⁃ Add more solutions.
 
 
-6.2 v0.1.0 - 2021-11-03
+6.3 v0.1.0 - 2021-11-03
 ───────────────────────
 
   ⁃ Initial implementation:
diff --git a/README.org b/README.org
index f00a887..aabb3a6 100644
--- a/README.org
+++ b/README.org
@@ -190,6 +190,14 @@ columns is known, the whole grid should be printed in a single line.
 
 * News
 
+** v0.2.0 - 2021-11-25
+
++ Add demo videos.
++ Add more solutions.
++ Implement BFS in Java.
++ Implement DFS in Raku.
++ Add basic tests.
+
 ** v0.1.1 - 2021-11-16
 
 + Add option to skip generating slideshow.
light .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
discard """
  file: "tasynctry2.nim"
  errormsg: "\'yield\' cannot be used within \'try\' in a non-inlined iterator"
  line: 15
"""
import asyncdispatch

proc foo(): Future[bool] {.async.} = discard

proc test5(): Future[int] {.async.} =
  try:
    discard await foo()
    raise newException(ValueError, "Test5")
  except:
    discard await foo()
    result = 0