Skip to content

Commit

Permalink
version 3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ddnexus committed Feb 14, 2021
1 parent fbc322f commit 91e1d5d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## Version 3.11.0

### Changers

- added Swahili localization

### Commits

- [fbc322f](http://github.com/ddnexus/pagy/commit/fbc322f): Add Swahili (sw) to pagy (#276)
- [ebbac6b](http://github.com/ddnexus/pagy/commit/ebbac6b): Fix: broken links (#272) [ci-skip]
- [2178436](http://github.com/ddnexus/pagy/commit/2178436): restored file removed by mistake

## Version 3.10.0

### Changes
Expand All @@ -8,7 +20,6 @@

### Commits

- [8fe6f21](http://github.com/ddnexus/pagy/commit/8fe6f21): version 3.10.0
- [316183f](http://github.com/ddnexus/pagy/commit/316183f): minor adjustments to p11n.rb; removed local file
- [2e7fa1b](http://github.com/ddnexus/pagy/commit/2e7fa1b): Update with 'cs' (#269)added lambda for 'west_slavic' and 'hash for 'cs' language
- [70760c6](http://github.com/ddnexus/pagy/commit/70760c6): Czech localization (#268)
Expand Down
2 changes: 1 addition & 1 deletion lib/config/pagy.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# encoding: utf-8
# frozen_string_literal: true

# Pagy initializer file (3.10.0)
# Pagy initializer file (3.11.0)
# Customize only what you really need and notice that 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
2 changes: 1 addition & 1 deletion lib/javascripts/pagy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

function Pagy(){}

Pagy.version = '3.10.0';
Pagy.version = '3.11.0';

Pagy.init = function(arg){
var target = arg instanceof Event || arg === undefined ? document : arg,
Expand Down
2 changes: 1 addition & 1 deletion lib/pagy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

require 'pathname'

class Pagy ; VERSION = '3.10.0'
class Pagy ; VERSION = '3.11.0'

# Root pathname to get the path of Pagy files like templates or dictionaries
def self.root; @root ||= Pathname.new(__FILE__).dirname.freeze end
Expand Down

0 comments on commit 91e1d5d

Please sign in to comment.