Skip to content

Commit 7bfbf56

Browse files
committed
Version 0.1.3
1 parent 4420220 commit 7bfbf56

File tree

39 files changed

+64
-55
lines changed

39 files changed

+64
-55
lines changed

Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
- version: 0.1.3
2+
date: Tue Jan 27 10:05:53 PM PST 2026
3+
changes:
4+
- Fix for `make release-bindings`
5+
- Revert Clojars group to org.yamlstar
6+
- Fix `make release` step 7 to trigger release builds
7+
- Add Delphi Pascal binding (using FPC)
8+
- Add yamlstar.org website in www/
9+
110
- version: 0.1.2
211
date: Tue Jan 27 10:31:13 AM PST 2026
312
changes:

Meta

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

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.2-SNAPSHOT"
1+
(defproject yamlstar/cli "0.1.3-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.2-SNAPSHOT"]
7+
:dependencies [[yamlstar/core "0.1.3-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.2-SNAPSHOT")
14+
(def version "0.1.3-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-
[org.yamlstar/yamlstar "0.1.2"]
10+
[org.yamlstar/yamlstar "0.1.3"]
1111
```
1212

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

1515
```clojure
16-
org.yamlstar/yamlstar {:mvn/version "0.1.2"}
16+
org.yamlstar/yamlstar {:mvn/version "0.1.3"}
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 org.yamlstar/yamlstar "0.1.2"
1+
(defproject org.yamlstar/yamlstar "0.1.3"
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.2-SNAPSHOT"
1+
(defproject yamlstar/core "0.1.3-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.2-SNAPSHOT")
68+
"0.1.3-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.2</Version>
9+
<Version>0.1.3</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.2</PackageVersion>
17+
<PackageVersion>0.1.3</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>

delphi/src/yamlstar.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface
2020

2121
const
2222
{ Version matching the yamlstar shared library }
23-
YAMLSTAR_VERSION = '0.1.2';
23+
YAMLSTAR_VERSION = '0.1.3';
2424

2525
type
2626
{ Exception raised when YAMLStar encounters an error }

0 commit comments

Comments
 (0)