Skip to content

Commit 1f921f4

Browse files
StartAutomatingStartAutomating
authored andcommitted
Posting with GitPub [skip ci]
1 parent aff7c76 commit 1f921f4

File tree

3 files changed

+51
-0
lines changed

3 files changed

+51
-0
lines changed

docs/2022-11-07.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2022/11/07/
3+
---
4+
{% for post in site.posts %}
5+
{% assign currentdate = post.date | date: "%Y %m %d" %}
6+
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
7+
{% if currentdate != "2022 11 07" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2022-11.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2022/11/
3+
---
4+
{% assign currentYearMonth = "2022 11" %}
5+
{% for post in site.posts %}
6+
{% assign postYear = post.date | date: "%Y" %}
7+
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
8+
{% assign postYM = post.date | date: "%Y %m" %}
9+
{% if postYM != currentYearMonth %}
10+
{% continue %}
11+
{% endif %}
12+
{% if hasDisplayedYearMonth != postYearMonth %}
13+
## {{postYearMonth}}
14+
{% endif %}
15+
{% assign hasDisplayedYearMonth = postYearMonth %}
16+
* [ {{ post.title }} ]( {{ post.url }} )
17+
{% endfor %}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
3+
title: PipeScript 0.1.9
4+
sourceURL: https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.9
5+
tag: release
6+
---
7+
## 0.1.9:
8+
* Protocol Transpilers
9+
* Adding JSONSchema transpiler (Fixes [#274](https://github.com/StartAutomating/PipeScript/issues/274))
10+
* HTTP Protocol: Only allowing HTTP Methods (Fixes [#275](https://github.com/StartAutomating/PipeScript/issues/275))
11+
* Keyword improvements:
12+
* all scripts in $directory (Fixes [#277](https://github.com/StartAutomating/PipeScript/issues/277))
13+
* 'new' keyword recursively transpiles constructor arguments (Fixes [#271](https://github.com/StartAutomating/PipeScript/issues/271))
14+
* Core improvements:
15+
* Core Transpiler stops transpilation of an item after any output (Fixes [#280](https://github.com/StartAutomating/PipeScript/issues/280))
16+
* [CommandAst].AsSentence now maps singleton values correctly (Fixes [#279](https://github.com/StartAutomating/PipeScript/issues/279))
17+
* PipeScript now handles CommandNotFound, enabling interactive use (Fixes [#281](https://github.com/StartAutomating/PipeScript/issues/281))
18+
19+
Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG)

0 commit comments

Comments
 (0)