Skip to content

Releases: fallsimply/bilit

v0.5.1

16 Mar 18:26
Compare
Choose a tag to compare
  • Update Test Examples on pkg.go.dev / godoc.org

v0.5.0 - RegExp Escaping

16 Mar 16:43
Compare
Choose a tag to compare

BREAKING CHANGES

  • Removed bilit.Data

Changes

  • Added RegExp Escaping - #1
  • Better Code Formating

v0.4.1 - Better Logging

13 Mar 05:28
Compare
Choose a tag to compare

logging now includes the line number and the prefix [bilit] for normally or [bilit/DEBUG] in debug mode

v0.4.0 - Code Cleanup and Better Configuration

13 Mar 05:08
Compare
Choose a tag to compare
  • Stripped commented function for easier reading
  • Added Global Debug Variable (and disable debug printing by default)
  • Added Support for setting a Default and Template Specific Regex(p) matching pattern

v0.3.0 - Add New API

16 Sep 22:15
Compare
Choose a tag to compare

New API Example:

var tmpl = bilit.Template("Hello, I'm {{name}} from {{City}}, {{from_state}}")
println(tmpl.Populate(map[string]string{
	"name": "John",
	"City": "Dallas",
	"from_state": "TX"
}))
println(tmpl.Pull("Hello, I'm John from Dallas, TX"))

The new API has a backwards compatible API wrapper

v0.2.0 Base Release

15 Sep 00:13
Compare
Choose a tag to compare

Both pull and populate are wokring like specified in the design document.

v0.1.0

14 Sep 23:49
Compare
Choose a tag to compare

pull is implimented like specified in the design doc.