Skip to content

Commit

Permalink
Version 5.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ddnexus committed Jan 13, 2022
1 parent e6470f1 commit 4990b18
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
GEM=pagy
VERSION=5.7.4
VERSION=5.7.5
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Still supported in version `5.x` but not supported from `6.0` on:

<hr>

## Version 5.7.5

## Version 5.7.4

- Added parcel-plugin-nuke-dist
Expand Down
2 changes: 1 addition & 1 deletion lib/config/pagy.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

# Pagy initializer file (5.7.4)
# Pagy initializer file (5.7.5)
# Customize only what you really need and notice that the core Pagy works also without any of the following lines.
# Should you just cherry pick part of this file, please maintain the require-order of the extras

Expand Down
4 changes: 2 additions & 2 deletions lib/javascripts/pagy-dev.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/javascripts/pagy-module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Pagy = {
version: "5.7.4",
version: "5.7.5",
// Scan for "data-pagy-json" elements, parse their JSON content and call their init functions
init(arg) {
const target = arg instanceof Element ? arg : document;
Expand Down
2 changes: 1 addition & 1 deletion lib/javascripts/pagy.js

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

2 changes: 1 addition & 1 deletion lib/pagy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Core class
class Pagy
VERSION = '5.7.4'
VERSION = '5.7.5'

# Root pathname to get the path of Pagy files like templates or dictionaries
def self.root
Expand Down
2 changes: 1 addition & 1 deletion src/pagy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface LabelSequels { readonly [width:string]: string[] }
interface NavElement extends Element { pagyRender(): void }

const Pagy = {
version: "5.7.4",
version: "5.7.5",

// Scan for "data-pagy-json" elements, parse their JSON content and call their init functions
init(arg?:Element|never) {
Expand Down

0 comments on commit 4990b18

Please sign in to comment.