Skip to content

Commit

Permalink
release: Prepare 0.5.0 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephannv authored Sep 8, 2024
1 parent ed3c6bc commit 997fefd
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
22 changes: 6 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@ on:
push:

jobs:
lint:
name: Lint
ci:
name: Test
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Crystal
uses: crystal-lang/install-crystal@v1

- name: Run tests
run: crystal spec

- name: Cache Shards
uses: actions/cache@v3
with:
Expand All @@ -29,16 +32,3 @@ jobs:

- name: Lint with ameba
run: bin/ameba

test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v3

- name: Install Crystal
uses: crystal-lang/install-crystal@v1

- name: Run tests
run: crystal spec
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented on <https://stephannv.github.io/blueprint-docs/>.

## [0.5.0] - 2023-04-25

Performance improvements: Increased speed execution by 15%.
```
v0.5.0 364.46k ( 2.74µs) (± 0.52%) 7.95kB/op fastest
v0.4.0 317.83k ( 3.15µs) (± 0.76%) 8.99kB/op 1.15× slower
```

Release details: <https://stephannv.github.io/blueprint-docs/changelogs/v0.5.0/>

## [0.4.0] - 2023-04-25

Release details: <https://stephannv.github.io/blueprint-docs/changelogs/v0.4.0/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</p>

<p align="center">
<a href="https://github.com/stephannv/blueprint/actions/workflows/ci.yml"><img src="https://github.com/stephannv/blueprint/actions/workflows/ci.yml/badge.svg" alt="Tests & Code Format"></a>
<a href="https://github.com/stephannv/blueprint/actions/workflows/ci.yml"><img src="https://github.com/stephannv/blueprint/actions/workflows/ci.yml/badge.svg" alt="Tests"></a>
<a href="https://github.com/stephannv/blueprint/actions/workflows/weekly.yml"><img src="https://github.com/stephannv/blueprint/actions/workflows/weekly.yml/badge.svg" alt="Weekly CI"></a>
</p>

Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: blueprint
description: |
Blueprint is a lib for writing reusable and testable HTML templates in plain Crystal, allowing an OOP (Oriented Object Programming) approach when building your views.
version: 0.4.0
version: 0.5.0

authors:
- Stephann V. <[email protected]>

crystal: 1.9.2
crystal: ~> 1.9.2

license: MIT

Expand Down
2 changes: 1 addition & 1 deletion src/blueprint/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Blueprint
VERSION = "0.4.0"
VERSION = "0.5.0"
end

0 comments on commit 997fefd

Please sign in to comment.