Skip to content

Commit 68e3e25

Browse files
authored
v0.10.3 + alignments (#447)
1 parent 074a948 commit 68e3e25

12 files changed

+12
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Karafka Web Changelog
22

3-
## 0.10.3 (Unreleased)
3+
## 0.10.3 (2024-09-17)
44
- **[Feature]** Introduce ability to brand Web UI with environment (Pro).
55
- [Enhancement] Provide assignment status in the routing (Pro).
66
- [Enhancement] Support schedule cancellation via Web UI.

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
karafka-web (0.10.2)
4+
karafka-web (0.10.3)
55
erubi (~> 1.4)
66
karafka (>= 2.4.10, < 2.5.0)
77
karafka-core (>= 2.4.0, < 2.5.0)

karafka-web.gemspec

+7-1
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,16 @@ Gem::Specification.new do |spec|
3131
end
3232

3333
spec.cert_chain = %w[certs/cert.pem]
34-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
3534
spec.executables = %w[karafka-web]
3635
spec.require_paths = %w[lib]
3736

37+
spec.files = `git ls-files -z`
38+
.split("\x0")
39+
.reject { |f| f.match(%r{^(spec)/}) }
40+
.reject { |f| f.include?('.github') }
41+
.reject { |f| f.start_with?('.') }
42+
.reject { |f| f.end_with?('.map') }
43+
3844
spec.metadata = {
3945
'funding_uri' => 'https://karafka.io/#become-pro',
4046
'homepage_uri' => 'https://karafka.io',

lib/karafka/web/ui/public/javascripts/application.min.js

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

lib/karafka/web/ui/public/javascripts/application.min.js.map

-1
This file was deleted.

lib/karafka/web/ui/public/stylesheets/application.min.css

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

lib/karafka/web/ui/public/stylesheets/application.min.css.map

-1
This file was deleted.

lib/karafka/web/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
module Karafka
44
module Web
55
# Current gem version
6-
VERSION = '0.10.2'
6+
VERSION = '0.10.3'
77
end
88
end

0 commit comments

Comments
 (0)