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.2 release #294

Merged
merged 2 commits into from
Apr 30, 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
13 changes: 13 additions & 0 deletions audiences-react/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Unreleased

# Version 1.0.2 (2024-04-30)

- Build for ES2018 to remove nullish coalescing operator from final build [#293](https://github.com/powerhome/audiences/pull/293)

# Version 1.0.1 (2024-04-25)

- Release build adjustments

# Version 1.0 (2024-04-25)

- Inaugural release of Audiences react UI
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.1",
"version": "1.0.2",
"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.1)
audiences (1.0.2)
rails (>= 6.0)

GEM
Expand Down
12 changes: 11 additions & 1 deletion audiences/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Unreleased

# Version 1.0.2 (2024-04-30)

- Fix mysql2 compability – drop sqlite3 [#292](https://github.com/powerhome/audiences/pull/292)

# Version 1.0.1 (2024-04-25)

- Release build adjustments

# Version 1.0 (2024-04-25)

* Inaugural release of Audiences
- Inaugural release of Audiences
2 changes: 1 addition & 1 deletion audiences/gemfiles/rails_6_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
audiences (1.0.1)
audiences (1.0.2)
rails (>= 6.0)

GEM
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.1)
audiences (1.0.2)
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.1)
audiences (1.0.2)
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.1"
VERSION = "1.0.2"
end
Loading