From 25b1d33652f87230f454d03ba6a4e8fe23e084c6 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Fri, 7 Jan 2022 11:01:47 +0500 Subject: [PATCH] Added CHANGELOG, bulma version bump, a little of linting. --- .markdownlint.json | 3 +++ CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- bulpherjs.go | 1 - elements/head.go | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 .markdownlint.json create mode 100644 CHANGELOG.md diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..a36ab30 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,3 @@ +{ + "line-length": false +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..001c3b4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## Unreleased + +### Added + +* Basic HTML elements. diff --git a/README.md b/README.md index 3dc3314..0c2fc30 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ BulpherJS made primarily for applications that is using Go modules. So installation would be as simple as: -```shell script +```shell go get -u go.dev.pztrn.name/bulpherjs ``` ## Usage -TBW +See [examples](/examples). diff --git a/bulpherjs.go b/bulpherjs.go index 3728f21..00ee99f 100644 --- a/bulpherjs.go +++ b/bulpherjs.go @@ -2,7 +2,6 @@ package bulpherjs import ( "github.com/gopherjs/gopherjs/js" - "go.dev.pztrn.name/bulpherjs/common" "go.dev.pztrn.name/bulpherjs/elements" ) diff --git a/elements/head.go b/elements/head.go index 4e569ef..ce5aa57 100644 --- a/elements/head.go +++ b/elements/head.go @@ -8,7 +8,7 @@ import ( ) const ( - bulmaVersion = "0.8.0" + bulmaVersion = "0.9.3" ) // HeadOptions is a "head" HTML head element configuration structure.