Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ module github.com/tabnas/ini/go
go 1.24.7

require (
github.com/tabnas/hoover/go v0.3.5
github.com/tabnas/jsonic/go v0.6.5
github.com/tabnas/support/go v0.3.3
github.com/tabnas/hoover/go v0.3.6
github.com/tabnas/jsonic/go v0.6.6
github.com/tabnas/support/go v0.3.4
)

require (
github.com/tabnas/json/go v0.5.6 // indirect
github.com/tabnas/parser/go v0.8.11 // indirect
github.com/tabnas/json/go v0.5.7 // indirect
github.com/tabnas/parser/go v0.9.0 // indirect
)
24 changes: 12 additions & 12 deletions go/go.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
github.com/tabnas/debug/go v0.3.5 h1:SvUtAofBq0ufgz6EhV6YIDMn8/QvYBYnlZc3wD1zXqY=
github.com/tabnas/debug/go v0.3.5/go.mod h1:rKKt9xMxZjvIPl7D8cauDtcTPMZ1iyCBpR3/hSbmZnw=
github.com/tabnas/hoover/go v0.3.5 h1:192rp8x09Z26uAy35OouGoWAvF1RTWi/RCIays4eCFE=
github.com/tabnas/hoover/go v0.3.5/go.mod h1:T8kRNDpAEbqg49nk4fY9HMqcFPnyL3Y95vw4r/lFVh8=
github.com/tabnas/json/go v0.5.6 h1:5B7FqgC6zGbo8zvQjvSaVj4ffm857d9OeCUjSIhEyio=
github.com/tabnas/json/go v0.5.6/go.mod h1:wucwEJ55uJFevaKodsxc7ke6cjyKsIci7bEDHl/4xZI=
github.com/tabnas/jsonic/go v0.6.5 h1:AJgAjJjB7z+JNMeqIsNlk6HGL0Rp8UUW1Ia/F5ENdzE=
github.com/tabnas/jsonic/go v0.6.5/go.mod h1:niTRqyrJS60vkZc/oXiUk5h1g7bVlV7dSkE99FEJFC0=
github.com/tabnas/parser/go v0.8.11 h1:7aGBvzsUEB1Pkn4YGiUpBDAjgM8zWspu/RtkT3ZEY24=
github.com/tabnas/parser/go v0.8.11/go.mod h1:WrlfEVyZ1QjEIowWiyEu3K1iHj7wxuPut5zoH9Trehk=
github.com/tabnas/support/go v0.3.3 h1:UZEy8Tqih6NW6NywkY6FXv7R0iZnnpMywk74F8fypAk=
github.com/tabnas/support/go v0.3.3/go.mod h1:q+EGPO8fRFQAYDwRHFH4lafD5l5W/NCdY8vhN9IJOkY=
github.com/tabnas/debug/go v0.3.6 h1:WhVagcUtyk7lF4B30ZS9RhmRyHVupuCrJQEg7qOZCPI=
github.com/tabnas/debug/go v0.3.6/go.mod h1:taF7ArNW4PNRp/BTNBXvKUoEckXLW6KUHNCZ6i9nV7o=
github.com/tabnas/hoover/go v0.3.6 h1:eMLCGGKHU0kfka8PWswujb5yNJG/E4EnnoFC2PKX7UM=
github.com/tabnas/hoover/go v0.3.6/go.mod h1:/iFrE4nlLMFsrboNUn3ZgbxohaPaZWr3z/QWvS3OMU4=
github.com/tabnas/json/go v0.5.7 h1:rgJs/3jKcH3QkNJgqyzcs5Px78jJ2fnc5F9FZ2Wmtuc=
github.com/tabnas/json/go v0.5.7/go.mod h1:8sLM+05GOiEC1gET99Pq3X2LO3AjD1SB3/EqoN7JRIg=
github.com/tabnas/jsonic/go v0.6.6 h1:GeRN7mkAvJaamnRfaZCRbTqb9mpKV4qb76eaJDMvIGI=
github.com/tabnas/jsonic/go v0.6.6/go.mod h1:T+LXLUVlXrNi0xWO1pqfl/QssiiyX+ZYrYUHq/pU9HM=
github.com/tabnas/parser/go v0.9.0 h1:Fc1K+RMTHGmgnX/dfq9bL/5AFjyEQghzIPr/OVxj7/I=
github.com/tabnas/parser/go v0.9.0/go.mod h1:WrlfEVyZ1QjEIowWiyEu3K1iHj7wxuPut5zoH9Trehk=
github.com/tabnas/support/go v0.3.4 h1:c4+byVeX5sRXJN/KBEOSfpCu5i59o6MWetVHM5MtqOA=
github.com/tabnas/support/go v0.3.4/go.mod h1:q+EGPO8fRFQAYDwRHFH4lafD5l5W/NCdY8vhN9IJOkY=
2 changes: 1 addition & 1 deletion go/ini.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
// VERSION is this module's version. It MUST equal ts/package.json
// "version": the release orchestrator rewrites both, and
// TestVersionMatchesPackageJSON fails the build if they drift.
const VERSION = "0.5.6"
const VERSION = "0.5.7"

// IniOptions configures the INI parser.
type IniOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tabnas/ini",
"version": "0.5.6",
"version": "0.5.7",
"description": "This plugin allows the [Tabnas](https://github.com/tabnas/jsonic) JSON parser to support INI syntax.",
"main": "dist/ini.js",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion ts/src/ini.ts
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ function Ini(tn: Tabnas, _options: IniOptions) {
// VERSION is this package's version. It MUST equal package.json "version":
// the release orchestrator rewrites both, and the version test fails the
// build if they drift. Mirrors `const VERSION` in go/ini.go.
const VERSION = '0.5.6'
const VERSION = '0.5.7'

export { VERSION, Ini }

Expand Down
Loading