Skip to content

Commit 93fa9c3

Browse files
authored
Release 0.15.0, update gems and JS dependencies (#1386)
1 parent 8022dd9 commit 93fa9c3

File tree

9 files changed

+21
-16
lines changed

9 files changed

+21
-16
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
## Master
1+
## 0.15.0
22

33
##### Breaking
44

55
* None.
66

77
##### Enhancements
88

9+
* Update Javascript: typeahead.js 1.3.4, KaTeX 0.16.10
10+
[John Fairhurst](https://github.com/johnfairh)
11+
912
* Support Swift 5.10 with Swift Package Manager projects.
1013
[John Fairhurst](https://github.com/johnfairh)
1114
[#1381](https://github.com/realm/jazzy/issues/1381)

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GIT
99
PATH
1010
remote: .
1111
specs:
12-
jazzy (0.14.4)
12+
jazzy (0.15.0)
1313
cocoapods (~> 1.5)
1414
mustache (~> 1.1)
1515
open4 (~> 1.3)

js/package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/jazzy/extensions/katex/css/katex.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/jazzy/extensions/katex/js/katex.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/jazzy/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Jazzy
4-
VERSION = '0.14.4' unless defined? Jazzy::VERSION
4+
VERSION = '0.15.0' unless defined? Jazzy::VERSION
55
end

lib/jazzy/themes/apple/assets/js/typeahead.jquery.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* typeahead.js 1.3.1
2+
* typeahead.js 1.3.3
33
* https://github.com/corejavascript/typeahead.js
4-
* Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77

@@ -499,6 +499,7 @@
499499
});
500500
this.$input.attr({
501501
"aria-owns": id + "_listbox",
502+
"aria-controls": id + "_listbox",
502503
role: "combobox",
503504
"aria-autocomplete": "list",
504505
"aria-expanded": false

lib/jazzy/themes/fullwidth/assets/js/typeahead.jquery.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* typeahead.js 1.3.1
2+
* typeahead.js 1.3.3
33
* https://github.com/corejavascript/typeahead.js
4-
* Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77

@@ -499,6 +499,7 @@
499499
});
500500
this.$input.attr({
501501
"aria-owns": id + "_listbox",
502+
"aria-controls": id + "_listbox",
502503
role: "combobox",
503504
"aria-autocomplete": "list",
504505
"aria-expanded": false

spec/integration_specs

Submodule integration_specs updated 22 files

0 commit comments

Comments
 (0)