j1-template 2023.3.2 → 2023.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,7 +57,7 @@
57
57
  <id>{{ page.url | absolute_url | xml_escape }}</id>
58
58
  <post_limited>{{ limit_posts }}</post_limited>
59
59
  <template_name>J1 Theme</template_name>
60
- <template_version>2023.3.2</template_version>
60
+ <template_version>2023.3.3</template_version>
61
61
 
62
62
  {% assign title = site.title | default: site.name %}
63
63
  {% if page.collection != "posts" %}
@@ -391,6 +391,6 @@ end
391
391
 
392
392
  module Jekyll
393
393
  module J1LunrSearch
394
- VERSION = '2023.3.2'
394
+ VERSION = '2023.3.3'
395
395
  end
396
396
  end
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1",
4
- "version": "2023.3.2",
4
+ "version": "2023.3.3",
5
5
  "description": "J1 Theme Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -120,7 +120,7 @@ Add this line to your application's Gemfile:
120
120
 
121
121
  [source, sh]
122
122
  ----
123
- gem 'j1_template', '~> 2023.3.2'
123
+ gem 'j1_template', '~> 2023.3.3'
124
124
  ----
125
125
 
126
126
  and install the locally created RubGem as:
@@ -172,14 +172,14 @@ bla ... specific version ...
172
172
 
173
173
  [source, sh]
174
174
  ----
175
- gem install j1-template -v 2023.3.2 --user-install --no-document
175
+ gem install j1-template -v 2023.3.3 --user-install --no-document
176
176
  ----
177
177
 
178
178
  You can also use *version* comparators like `>=` or `~>`.
179
179
 
180
180
  [source, sh]
181
181
  ----
182
- gem install j1-template -v "~> 2023.3.2" --user-install --no-document
182
+ gem install j1-template -v "~> 2023.3.3" --user-install --no-document
183
183
  ----
184
184
 
185
185
  === Install from a different source
@@ -188,7 +188,7 @@ bla ... specific version ...
188
188
 
189
189
  [source, sh]
190
190
  ----
191
- gem install j1-template -v 2023.3.2 --source 'https://gem.fury.io/jekyll-one-org/' --user-install --no-document
191
+ gem install j1-template -v 2023.3.3 --source 'https://gem.fury.io/jekyll-one-org/' --user-install --no-document
192
192
  ----
193
193
 
194
194
  [role="mt-5"]
@@ -1076,28 +1076,28 @@ git rm -rf --cached . && git add .
1076
1076
  git commit -am "Cleanup files"
1077
1077
  ----
1078
1078
 
1079
- |`commit -am "New version 2023.3.2"`
1079
+ |`commit -am "New version 2023.3.3"`
1080
1080
  |Commit a specific *version*.
1081
1081
  |
1082
1082
  [source, sh]
1083
1083
  ----
1084
- git commit -am "New version 2023.3.2"
1084
+ git commit -am "New version 2023.3.3"
1085
1085
  ----
1086
1086
 
1087
- |`commit --allow-empty -m "New version 2023.3.2"`
1087
+ |`commit --allow-empty -m "New version 2023.3.3"`
1088
1088
  |Commit a specific version but *no* (file) changes applied.
1089
1089
  |
1090
1090
  [source, sh]
1091
1091
  ----
1092
- git commit --allow-empty -m "New version 2023.3.2"
1092
+ git commit --allow-empty -m "New version 2023.3.3"
1093
1093
  ----
1094
1094
 
1095
- |`commit -am "Prepare new version 2023.3.2"`
1095
+ |`commit -am "Prepare new version 2023.3.3"`
1096
1096
  |Commit a specific version but changes are *not* final.
1097
1097
  |
1098
1098
  [source, sh]
1099
1099
  ----
1100
- git commit -am "Prepare new version 2023.3.2"
1100
+ git commit -am "Prepare new version 2023.3.3"
1101
1101
  ----
1102
1102
 
1103
1103
  |`commit -am "Latest files"`
@@ -1346,14 +1346,14 @@ Use the git 'tag' command with the '-d' option
1346
1346
 
1347
1347
  [source, sh]
1348
1348
  ----
1349
- git tag -d v2023.3.2
1349
+ git tag -d v2023.3.3
1350
1350
  ----
1351
1351
 
1352
1352
  .from remote
1353
1353
 
1354
1354
  [source, sh]
1355
1355
  ----
1356
- git push -d origin v2023.3.2
1356
+ git push -d origin v2023.3.3
1357
1357
  ----
1358
1358
 
1359
1359
 
@@ -1364,7 +1364,7 @@ then push the new tag
1364
1364
 
1365
1365
  [source, sh]
1366
1366
  ----
1367
- git tag -a v2023.3.2 -m "v2023.3.2"
1367
+ git tag -a v2023.3.3 -m "v2023.3.3"
1368
1368
  git push origin --tags
1369
1369
  ----
1370
1370
 
@@ -1396,10 +1396,10 @@ Then:
1396
1396
  [source, sh]
1397
1397
  ----
1398
1398
  git commit -am "Cleanup files"
1399
- git commit -am "New version 2023.3.2"
1400
- git commit --allow-empty -m "New version 2023.3.2"
1401
- git commit -am "Prepare new version 2023.3.2"
1402
- git commit -am "Latest files of version 2023.3.2"
1399
+ git commit -am "New version 2023.3.3"
1400
+ git commit --allow-empty -m "New version 2023.3.3"
1401
+ git commit -am "Prepare new version 2023.3.3"
1402
+ git commit -am "Latest files of version 2023.3.3"
1403
1403
  ----
1404
1404
 
1405
1405
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.3.2",
4
+ "version": "2023.3.3",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2023.3.2",
4
+ "version": "2023.3.3",
5
5
  "description": "J1 Theme Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: j1-template
3
3
  version: !ruby/object:Gem::Version
4
- version: 2023.3.2
4
+ version: 2023.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - juergen_jekyll_one
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-03 00:00:00.000000000 Z
11
+ date: 2023-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll