Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 1.0.3 release #315

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions audiences-react/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# Version 1.0.3 (2024-05-14)

- Fix typeahead glitch [#314](https://github.com/powerhome/audiences/pull/314)
- Wrap SCIM resource typeahead search as a string [#308](https://github.com/powerhome/audiences/pull/308)

Expand Down
2 changes: 1 addition & 1 deletion audiences-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "audiences",
"version": "1.0.2",
"version": "1.0.3",
"description": "Audiences SCIM client",
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion audiences/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
audiences (1.0.2)
audiences (1.0.3)
rails (>= 6.0)

GEM
Expand Down
2 changes: 2 additions & 0 deletions audiences/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# Version 1.0.3 (2024-05-14)

- Fix PostgreSQL compability [#312](https://github.com/powerhome/audiences/pull/312)
- Fix audiences resources pagination [#313](https://github.com/powerhome/audiences/pull/313)

Expand Down
2 changes: 1 addition & 1 deletion audiences/gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
audiences (1.0.2)
audiences (1.0.3)
rails (>= 6.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion audiences/gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
audiences (1.0.2)
audiences (1.0.3)
rails (>= 6.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion audiences/gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
audiences (1.0.2)
audiences (1.0.3)
rails (>= 6.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion audiences/lib/audiences/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Audiences
VERSION = "1.0.2"
VERSION = "1.0.3"
end
Loading