Skip to content

Commit 0a7896d

Browse files
committed
Version 0.1.2
1 parent 9836b15 commit 0a7896d

File tree

33 files changed

+54
-48
lines changed

33 files changed

+54
-48
lines changed

Changes

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
- version: 0.1.1
2-
date: Tue Jan 27 10:16:02 AM PST 2026
1+
- version: 0.1.2
2+
date: Tue Jan 27 10:31:13 AM PST 2026
33
changes:
44
- Add a release process
55
- Change npm publishing name to just yamlstar
@@ -17,6 +17,12 @@
1717
- Makefile work for examples
1818
- Replace group org.yamlstar with com.yaml
1919
- Add interactive make release workflow
20+
- These were all done in 0.1.1 but release process failed
21+
22+
- version: 0.1.1
23+
date: Tue Jan 27 10:16:02 AM PST 2026
24+
changes:
25+
- Release process failed. See 0.1.2
2026

2127
- version: 0.1.0
2228
date: Sat Jan 10 02:25:23 PM EST 2026

Meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 0.1.1
1+
version: 0.1.2

cli/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
(defproject yamlstar/cli "0.1.1-SNAPSHOT"
1+
(defproject yamlstar/cli "0.1.2-SNAPSHOT"
22
:description "YAMLStar CLI - YAML loader command-line tool"
33
:url "https://github.com/yaml/yamlstar"
44
:license {:name "MIT License"
55
:url "https://opensource.org/licenses/MIT"}
66

7-
:dependencies [[yamlstar/core "0.1.1-SNAPSHOT"]
7+
:dependencies [[yamlstar/core "0.1.2-SNAPSHOT"]
88
[org.clojure/clojure "1.12.0"]
99
[org.clojure/tools.cli "1.1.230"]
1010
[org.clojure/data.json "2.5.0"]]

cli/src/yamlstar/cli.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[yamlstar.constructor :as constructor])
1212
(:gen-class))
1313

14-
(def version "0.1.1-SNAPSHOT")
14+
(def version "0.1.2-SNAPSHOT")
1515

1616
(defmacro with-timing [stage-name & body]
1717
`(let [start# (System/nanoTime)

clojure/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ A pure YAML 1.2 loader for Clojure.
77
### Leiningen/Boot
88

99
```clojure
10-
[com.yaml/yamlstar "0.1.1"]
10+
[com.yaml/yamlstar "0.1.2"]
1111
```
1212

1313
### Clojure CLI (deps.edn)
1414

1515
```clojure
16-
com.yaml/yamlstar {:mvn/version "0.1.1"}
16+
com.yaml/yamlstar {:mvn/version "0.1.2"}
1717
```
1818

1919
## Usage

clojure/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.yaml/yamlstar "0.1.1"
1+
(defproject com.yaml/yamlstar "0.1.2"
22
:description "YAMLStar - A pure YAML 1.2 loader for Clojure"
33
:url "https://github.com/yaml/yamlstar"
44

core/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject yamlstar/core "0.1.1-SNAPSHOT"
1+
(defproject yamlstar/core "0.1.2-SNAPSHOT"
22
:description "YAMLStar - A pure YAML 1.2 loader for Clojure"
33
:url "https://github.com/yaml/yamlstar"
44
:license {:name "MIT License"

core/src/yamlstar/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@
6565
(defn version
6666
"Return the YAMLStar version string"
6767
[]
68-
"0.1.1-SNAPSHOT")
68+
"0.1.2-SNAPSHOT")

csharp/YAMLStar.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<Nullable>enable</Nullable>
77
<AssemblyName>YAMLStar</AssemblyName>
88
<RootNamespace>YAMLStar</RootNamespace>
9-
<Version>0.1.1</Version>
9+
<Version>0.1.2</Version>
1010
<Authors>YAMLStar Contributors</Authors>
1111
<Description>YAML 1.2 loader binding for C#</Description>
1212
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1313
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1414

1515
<!-- NuGet Package Metadata -->
1616
<PackageId>YAMLStar</PackageId>
17-
<PackageVersion>0.1.1</PackageVersion>
17+
<PackageVersion>0.1.2</PackageVersion>
1818
<Title>YAMLStar</Title>
1919
<Summary>YAML 1.2 loader for C#/.NET</Summary>
2020
<PackageDescription>YAMLStar is a pure YAML 1.2 loader. This package provides a C# binding for YAMLStar, allowing you to load YAML documents from .NET applications.</PackageDescription>

example/clojure/ReadMe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ YAMLStar Example - Loading YAML and outputting JSON
4545
4646
Input YAML:
4747
name: YAMLStar Example
48-
version: 0.1.1
48+
version: 0.1.2
4949
...
5050
5151
---
5252
5353
Output JSON:
5454
{
5555
"name": "YAMLStar Example",
56-
"version": "0.1.1",
56+
"version": "0.1.2",
5757
...
5858
}
5959

0 commit comments

Comments
 (0)