Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #83 from sass/versions
Browse files Browse the repository at this point in the history
Make sure the various version numbers match
  • Loading branch information
nex3 authored Dec 21, 2021
2 parents d2e5b46 + 2a3b096 commit c3dd00b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

jobs:
dart_tests:
protoc:
name: "Validate proto"
runs-on: "ubuntu-latest"

Expand All @@ -18,6 +18,19 @@ jobs:
- name: Generate protobuf code
run: protoc --js_out=/tmp embedded_sass.proto

versions:
name: "Validate versions"
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2
- name: Check versions match
run: |
if ! (grep -q '\-dev$' VERSION ||
[[ "$(head -n 1 CHANGELOG.md)" == "## $(cat VERSION)" ]]); then
echo "VERSION file doesn't match CHANGELOG version."
fi
tag:
name: "Tag release"
runs-on: "ubuntu-latest"
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.0.0-beta.15

* Pluralize `Calculation.arguments`.

* Explicitly document how hosts should handle calculations.

## 1.0.0-beta.14

* Add support for calculation values.

## 1.0.0-beta.13

* Add the `Value.HwbColor` type.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## The Embedded Sass Protocol (1.0.0-beta.8)
## The Embedded Sass Protocol

* [Overview](#overview)
* [RPCs](#rpcs)
Expand Down

0 comments on commit c3dd00b

Please sign in to comment.