Skip to content

Commit

Permalink
Update version numbers, add changelog (#334)
Browse files Browse the repository at this point in the history
* Update version numbers, add changelog

* stash changes between checkouts

* restore cache when installing just

* bump cli → lib dependency version
  • Loading branch information
jameslittle230 committed Jan 12, 2023
1 parent 4dbe004 commit b946a78
Show file tree
Hide file tree
Showing 8 changed files with 96 additions and 37 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci-on-push.yml
Expand Up @@ -24,6 +24,7 @@ jobs:
crate: wasm-pack

- name: Set up just
if: steps.cache.outputs.cache-hit != 'true'
uses: actions-rs/install@v0.1
with:
crate: just
Expand Down Expand Up @@ -136,6 +137,7 @@ jobs:
$SETUP_REPO
$RUN_BENCHMARK > ${{ env.BASELINE_JSON }}
git stash
git checkout ${{ github.event.pull_request.head.sha }}
$SETUP_REPO
$RUN_BENCHMARK > ${{ env.CONTENDER_JSON }}
Expand Down
106 changes: 75 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions changelog.md
@@ -1,5 +1,18 @@
# Changelog

## v1.6.0

[Jan 11, 2023](https://github.com/jameslittle230/stork/releases/tag/v1.6.0)

### New Features

- Timestamp formatting for SRT files is now functional, and the [documentation](https://stork-search.net/docs/srt), which previously referenced unimplemented features, is now accurate.
- The `x` SVG is now horizontally centered within the button.

### Other

- Internal dependency updates

## v1.5.0

[May 31, 2022](https://github.com/jameslittle230/stork/releases/tag/v1.5.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "stork",
"version": "1.5.0",
"version": "1.6.0",
"description": "Impossibly fast web search, made for static sites.",
"main": "index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions stork-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "stork-search"
version = "1.5.0"
version = "1.6.0"
authors = ["James Little <littleguy23@gmail.com>"]
edition = "2021"
documentation = "https://stork-search.net/docs"
Expand Down Expand Up @@ -29,7 +29,7 @@ hyper = { version = "0.14.17", optional = true, features = ["server"] }
num-format = "0.4.0"
serde = "1.0.130"
serde_json = "1.0.68"
stork-lib = { path = "../stork-lib", version = "1.5.0", default-features = false }
stork-lib = { path = "../stork-lib", version = "1.6.0", default-features = false }
textwrap = { version = "0.14.2", features = ["terminal_size"] }
thiserror = "1.0.29"
tokio = { version = "1.18.4", optional = true, features = ["signal"] }
Expand Down
2 changes: 1 addition & 1 deletion stork-lib/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "stork-lib"
version = "1.5.0"
version = "1.6.0"
authors = ["James Little <littleguy23@gmail.com>"]
edition = "2021"
documentation = "https://stork-search.net/docs"
Expand Down
2 changes: 1 addition & 1 deletion stork-wasm/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "stork-wasm"
version = "1.5.0"
version = "1.6.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -4741,7 +4741,7 @@ static-extend@^0.1.1:
object-copy "^0.1.0"

stork-search@./stork-wasm/pkg:
version "2.0.0"
version "1.6.0"

string-length@^4.0.1:
version "4.0.2"
Expand Down

0 comments on commit b946a78

Please sign in to comment.