aboutsummaryrefslogtreecommitdiff
path: root/go.sum
AgeCommit message (Collapse)Author
11 daysgo.mod: update all dependenciesShulhan
2026-02-09go.mod: update dependenciesShulhan
2025-12-27go.mod: use Go 1.24.0 and update all dependenciesShulhan
2025-04-18all: update all dependenciesShulhan
2025-02-01go.mod: update all dependenciesShulhan
2025-01-06go.mod: update all dependencies and Go to version 1.23.4Shulhan
2024-12-08go.mod: update all dependenciesShulhan
2024-09-07go.mod: update dependencyShulhan
2024-08-12go.mod: update all dependenciesShulhan
2024-04-04Release asciidoctor-go v0.5.2 (2023-04-04)v0.5.2Shulhan
This release only contains chores. * all: replace module "share" with "pakakeh.go" The "share" module has been moved to new repository with new name at "https://sr.ht/~shulhan/pakakeh.go". For more information see the change logs at "pakakeh.go" module. * all: comply with linter recommendations Most of the code changes related to refactoring if-else witch switch statement. * all: replace if-else bytes.Equals with static string case comparisons Using string instead of [bytes.Equal] give code much more readable.
2024-03-05all: replace module "share" with "pakakeh.go"Shulhan
2023-12-10go.mod: set minimum Go to version 1.20 and update all dependenciesShulhan
2023-11-05go.mod: update all dependenciesShulhan
2023-10-14go.mod: update all dependenciesShulhan
2023-06-04go.mod: update share module to v0.47.0Shulhan
2023-05-28go.mod: update all dependencies and Go version to 1.19Shulhan
2023-03-02all: update share modulesShulhan
2023-02-12go.mod: update share module to v0.43.0Shulhan
2022-10-20go.mod: update the share moduleShulhan
2022-09-04all: update share module to v0.41.0Shulhan
2022-08-05go.mod: update share to v0.40.0Shulhan
This update fix some issues related to new line on test.Data.
2022-07-24all: rewrite test using lib/test.DataShulhan
Previously, to test parser and check the generated HTML, we write AsciDoc input and expected HTML output using literal string `...`. The text of input and output sometimes long, take multiple lines, which makes the test code ugly, hard to write, and read. Using lib/test.Data we can write the input and output as the AsciiDoc markup and the HTML markup as is, simplify writing the test and more readable.
2022-07-16go.mod: set the minimum Go version to 1.18 and update share moduleShulhan
This changes replace any use of io/ioutil with os package.
2022-03-04Release asciidoctor-go v0.2.0 (2022-03-04)v0.2.0Shulhan
This release changes the license of asciidoctor-go from BSD to GPL 3.0 or later. === Bug fixes * all: fix list check box text get cut one character + -- Given the following asciidoc check box markup, * [ ] abc It will rendereded as "❏ bc" instead of "❏ abc". -- === Chores * all: replace bytes.Title and strings.Title with function + Both of those functions has been deprecated. + Since the Title function is used to convert the adminition string into a human title (first letter uppercase), we can use a function to do that. Any unknown admonition will be returned as is.
2022-02-06go.mod: update share module to v0.34.0Shulhan
2021-12-06go.mod: update to latest share moduleShulhan
2021-10-05go.mod: update share module to v0.30.0Shulhan
2021-04-06go.mod: set minimum Go version to 1.16 and update module share to v0.25.1Shulhan
The latest update on share v0.25.1 remove the last boolean parameter on lib/test.Assert().
2021-03-06all: update dependencies to latest versionShulhan
While at it, increase the minimum Go version from 1.13 to 1.15
2020-11-23go.mod: update with latest share moduleShulhan
Support the new improvement on test.Assert() function.
2020-11-15all: support setting document title through meta "doctitle"Shulhan
2020-10-15asciidoctor-go: asciidoctor markup parser for GoShulhan
This is the first commit that can parser whole document line by line and provide convertion to HTML. Things that does not working: inline style, table, passthrough, dynamic attributes, include.