sitemap_generator 7.0.2 → 7.1.0

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +78 -63
  3. data/README.md +142 -143
  4. data/VERSION +1 -1
  5. data/lib/capistrano/sitemap_generator.rb +2 -0
  6. data/lib/sitemap_generator/adapters/active_storage_adapter.rb +15 -10
  7. data/lib/sitemap_generator/adapters/aws_sdk_adapter.rb +13 -12
  8. data/lib/sitemap_generator/adapters/file_adapter.rb +10 -13
  9. data/lib/sitemap_generator/adapters/fog_adapter.rb +2 -2
  10. data/lib/sitemap_generator/adapters/google_storage_adapter.rb +5 -4
  11. data/lib/sitemap_generator/adapters/s3_adapter.rb +15 -14
  12. data/lib/sitemap_generator/adapters/wave_adapter.rb +5 -5
  13. data/lib/sitemap_generator/application.rb +5 -3
  14. data/lib/sitemap_generator/builder/sitemap_file.rb +21 -15
  15. data/lib/sitemap_generator/builder/sitemap_index_file.rb +23 -18
  16. data/lib/sitemap_generator/builder/sitemap_index_url.rb +5 -6
  17. data/lib/sitemap_generator/builder/sitemap_url.rb +58 -34
  18. data/lib/sitemap_generator/builder.rb +4 -2
  19. data/lib/sitemap_generator/core_ext/big_decimal.rb +38 -33
  20. data/lib/sitemap_generator/core_ext/numeric.rb +50 -46
  21. data/lib/sitemap_generator/helpers/number_helper.rb +52 -46
  22. data/lib/sitemap_generator/interpreter.rb +11 -15
  23. data/lib/sitemap_generator/link_set.rb +63 -65
  24. data/lib/sitemap_generator/railtie.rb +1 -52
  25. data/lib/sitemap_generator/simple_namer.rb +3 -4
  26. data/lib/sitemap_generator/sitemap_location.rb +44 -36
  27. data/lib/sitemap_generator/tasks.rb +1 -1
  28. data/lib/sitemap_generator/templates.rb +6 -7
  29. data/lib/sitemap_generator/utilities.rb +25 -41
  30. data/lib/sitemap_generator.rb +22 -14
  31. data/lib/tasks/sitemap_generator_tasks.rake +2 -0
  32. data/rails/install.rb +2 -0
  33. data/rails/uninstall.rb +2 -0
  34. data/templates/sitemap.rb +2 -0
  35. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64e5f8cba69093d945ae1e54d6c89fb8da86367ce4bb08a55e19e3652da25cc4
4
- data.tar.gz: bc7f1dcf2f220d5ed0b8a53062df1411864fecf47fbaf5ed5de3743b099db65c
3
+ metadata.gz: b18ba1ba719a39678730f1b1e4c76f9162725c3cf0b355510738a5586e566eff
4
+ data.tar.gz: 67dc99385dee6022f06a66945c75b24497bea9f9fc573c1ab866fcb583dc5c0e
5
5
  SHA512:
6
- metadata.gz: 10a915440acdf9c713f2ba8f5acf0306f88cf2ed898c5b213b6001dadf674e78e950c62aa54d84db91d7b292ccfac8df22b393f98749ed3af4acb6e78767c32e
7
- data.tar.gz: 1a0fa9ad0f5d374f423db19334498054b45d26e17696bb978ce42442ad7bdcf394305396e8a6252681cfe34ac543bcce92e76f1044b55206acbf565991e0015c
6
+ metadata.gz: 97fb528cf9d949463a89f3ded008df4516766aa978462954184aca1aae83fa6aa590d6efc9e81fb2f7d6a3f8f82b7fcbe0c07a5a855539c23ba86bd1ec7ae552
7
+ data.tar.gz: cba27e4d71b77be16ce19e6cd0dae400d2a86570e8e0d637b102c83c841440cf86d9e0aa5a6e7365a3a3885ef622fd26e5c581d68d25f437eff6f78a5aacdd2f
data/CHANGES.md CHANGED
@@ -1,8 +1,24 @@
1
- ### 7.0.2
1
+ # Changelog
2
+
3
+ ## 7.1.0
4
+
5
+ * **Breaking:** `SitemapGenerator::FileAdapter#plain` has been removed. It was an internal helper inlined into `#write` to fix a file descriptor leak; any code calling it directly should call `#write` instead. [#492](https://github.com/kjvarga/sitemap_generator/pull/492)
6
+ * **Breaking:** `SitemapGenerator::FileAdapter#gzip` is now private. It was always an implementation detail; external callers should not need to invoke it directly. [#492](https://github.com/kjvarga/sitemap_generator/pull/492)
7
+ * Fix: `AwsSdkAdapter` and `S3Adapter` now derive the `Content-Type` header from the file extension (`.xml` → `application/xml`, `.xml.gz` → `application/x-gzip`) via the new `SitemapLocation#content_type` helper, rather than always sending `application/x-gzip`. [#329](https://github.com/kjvarga/sitemap_generator/issues/329) [#338](https://github.com/kjvarga/sitemap_generator/issues/338) [#495](https://github.com/kjvarga/sitemap_generator/pull/495)
8
+ * Docs: Replace broken links in README and CHANGES.md; add deprecation notices for mobile sitemaps (deprecated by Google in August 2022) and geo sitemaps (retired by Google in February 2012). [#497](https://github.com/kjvarga/sitemap_generator/pull/497)
9
+ * Internal: enforce RuboCop across all source files, resolve all pre-existing offenses, add RuboCop and mdl (Markdown) linting to GitHub Actions CI, and add pre-commit git hooks that lint staged Ruby and Markdown files locally. [#487](https://github.com/kjvarga/sitemap_generator/pull/487) [#492](https://github.com/kjvarga/sitemap_generator/pull/492) [#493](https://github.com/kjvarga/sitemap_generator/pull/493) [#494](https://github.com/kjvarga/sitemap_generator/pull/494) [#500](https://github.com/kjvarga/sitemap_generator/pull/500)
10
+
11
+ ## 7.0.3
12
+
13
+ * **Regression fix:** Revert railtie enhancements (#478) that were unintentionally included in 7.0.2. Those changes introduced an `ArgumentError: Missing host to link to!` during `assets:precompile` and other Rails boot contexts where no host is configured (reported in [#488](https://github.com/kjvarga/sitemap_generator/issues/488)). The railtie is restored to its 7.0.1 behaviour: it loads rake tasks only. The enhancements will return in a future release with proper documentation and test coverage. [#489](https://github.com/kjvarga/sitemap_generator/pull/489)
14
+ * **Bugfix:** Restore sitemap generation on Ruby 2.x when `--enable=frozen-string-literal` is set globally. Ruby 2.6/2.7 freezes interpolated heredocs under that flag, causing `gsub!` to raise `FrozenError`. [#486](https://github.com/kjvarga/sitemap_generator/pull/486)
15
+ * Internal: skip duplicate git tag creation in the release task if the tag already points at HEAD.
16
+
17
+ ## 7.0.2
2
18
 
3
19
  * Reduce string copies and improve compatibility with `frozen_string_literal`. [#456](https://github.com/kjvarga/sitemap_generator/pull/456)
4
20
 
5
- ### 7.0.1
21
+ ## 7.0.1
6
22
 
7
23
  * **Breaking:** Default search engines list is empty. `rake sitemap:refresh` and `ping_search_engines` perform no HTTP pings unless you configure engine URLs on `search_engines` or pass them into `ping_search_engines` (Google’s ping endpoint is deprecated upstream). [#444](https://github.com/kjvarga/sitemap_generator/pull/444)
8
24
  * **Breaking:** `LinkSet#create` runs `finalize!` only when a block is given. Calling `create` without a block requires `finalize!` when you are done adding links (supported workflow for programmatic builds). [#463](https://github.com/kjvarga/sitemap_generator/pull/463)
@@ -18,18 +34,18 @@
18
34
  * Add support for Ruby 4.0 [#466](https://github.com/kjvarga/sitemap_generator/pull/466)
19
35
  * Add ActiveStorage adapter (`ActiveStorage::Blob`) [#467](https://github.com/kjvarga/sitemap_generator/pull/467)
20
36
 
21
- ### 6.3.0
37
+ ## 6.3.0
22
38
 
23
39
  * Remove Bing's deprecated sitemap submission [#400](https://github.com/kjvarga/sitemap_generator/pull/400).
24
40
  * `SitemapGenerator::AwsSdkAdapter`: Support configuring ACL and caching on the uploaded files [#409](https://github.com/kjvarga/sitemap_generator/pull/409).
25
41
  * `SitemapGenerator::GoogleStorageAdapter`: Support configuring ACL on the uploaded files [#410](https://github.com/kjvarga/sitemap_generator/pull/410).
26
42
  * Fix CircleCI specs for Ruby 3 [#407](https://github.com/kjvarga/sitemap_generator/pull/407).
27
43
 
28
- ### 6.2.1
44
+ ## 6.2.1
29
45
 
30
46
  * Bugfix: Improve handling of deprecated options in `AwsSdkAdapter`. Fixes bug where `:region` was being set to `nil`. [#390](https://github.com/kjvarga/sitemap_generator/pull/390).
31
47
 
32
- ### 6.2.0
48
+ ## 6.2.0
33
49
 
34
50
  * Raise `LoadError` when an adapter's dependency is missing to better support Sorbet [#387](https://github.com/kjvarga/sitemap_generator/pull/387).
35
51
  * Update the Bing notification URL [#386](https://github.com/kjvarga/sitemap_generator/pull/386).
@@ -38,29 +54,29 @@
38
54
  * `SitemapGenerator::GoogleStorageAdapter`: Support ruby 3 kwarg changes [#375](https://github.com/kjvarga/sitemap_generator/pull/375).
39
55
  * `SitemapGenerator::S3Adapter`: Allow Fog `public` option to be Configurable [#359](https://github.com/kjvarga/sitemap_generator/pull/359).
40
56
 
41
- ### 6.1.2
57
+ ## 6.1.2
42
58
 
43
59
  * Resolve NoMethodError using URI#open for Ruby less than 2.5.0 [#353](https://github.com/kjvarga/sitemap_generator/pull/353)
44
60
 
45
- ### 6.1.1
61
+ ## 6.1.1
46
62
 
47
63
  * Resolve deprecation warning on using Kernel#open in Ruby 2.7 (use URI.open instead) [#342](https://github.com/kjvarga/sitemap_generator/pull/342)
48
64
  * Support S3 Endpoints for S3 Compliant Providers like DigitalOcean Spaces [#325](https://github.com/kjvarga/sitemap_generator/pull/325)
49
65
 
50
- ### 6.1.0
66
+ ## 6.1.0
51
67
 
52
68
  * Support uploading files to Google Cloud Storage [#326](https://github.com/kjvarga/sitemap_generator/pull/326) and [#340](https://github.com/kjvarga/sitemap_generator/pull/340)
53
69
 
54
- ### 6.0.2
70
+ ## 6.0.2
55
71
 
56
72
  * Resolve `BigDecimal.new is deprecated` warnings in Ruby 2.5 [#305](https://github.com/kjvarga/sitemap_generator/pull/305).
57
73
  * Resolve `instance variable not initialized`, `File.exists? is deprecated` and `'*' interpreted as argument prefix` warnings [#304](https://github.com/kjvarga/sitemap_generator/pull/304).
58
74
 
59
- ### 6.0.1
75
+ ## 6.0.1
60
76
 
61
77
  * Use `yaml_tag` instead of `yaml_as`, which was deprecated in Ruby 2.4, and removed in 2.5 [#298](https://github.com/kjvarga/sitemap_generator/pull/298).
62
78
 
63
- ### 6.0.0
79
+ ## 6.0.0
64
80
 
65
81
  *Backwards incompatible changes*
66
82
 
@@ -73,12 +89,12 @@
73
89
 
74
90
  * If Rails is defined but the application is not loaded, don't include the URL helpers.
75
91
 
76
- ### 5.3.1
92
+ ## 5.3.1
77
93
 
78
94
  * Ensure files have 644 permissions when building to try to address issue [#264](https://github.com/kjvarga/sitemap_generator/issues/264)
79
95
  * Use HTTPS in the Gemfile (PR #[#263](https://github.com/kjvarga/sitemap_generator/pull/263))
80
96
 
81
- ### 5.3.0
97
+ ## 5.3.0
82
98
 
83
99
  * Add `max_sitemap_links` option support for limiting how many links each sitemap can hold. Issue [#188](https://github.com/kjvarga/sitemap_generator/issues/188) PR [#262](https://github.com/kjvarga/sitemap_generator/pull/262)
84
100
  * Upgrade development dependencies
@@ -89,39 +105,39 @@
89
105
  * Use presence of `Rails::VERSION` to detect when running under Rails, rather than just `Rails` constant. PR [#221](https://github.com/kjvarga/sitemap_generator/pull/221)
90
106
  * Remove gem post-install message warning about incompatible changes in version 4
91
107
 
92
- ### 5.2.0
108
+ ## 5.2.0
93
109
 
94
110
  * New `SitemapGenerator::AwsSdkAdapter` adapter using the bare aws-sdk gem.
95
111
  * Fix Bing ping url.
96
112
  * Support string option keys passed to `add`.
97
113
  * In Railtie, Load the rake task instead of requiring them.
98
114
 
99
- ### 5.1.0
115
+ ## 5.1.0
100
116
 
101
117
  * Require only `fog-aws` instead of `fog` for the `S3Adapter` and support using IAM profile instead of setting access key & secret directly.
102
118
  * Implement `respond_to?` on the `SitemapGenerator::Sitemap` pseudo class.
103
119
  * Make `:lang` optional on alternate links so they can be used for [AppIndexing](https://developers.google.com/app-indexing/reference/deeplinks).
104
120
  * Documented Mobile Sitemaps `:mobile` option.
105
121
 
106
- ### 5.0.5
122
+ ## 5.0.5
107
123
 
108
124
  * Use MIT licence.
109
125
  * Fix deploys with Capistrano 3 ([#163](https://github.com/kjvarga/sitemap_generator/issues/163)).
110
126
  * Allow any Fog storage options for S3 adapter ([#167](https://github.com/kjvarga/sitemap_generator/pull/167)).
111
127
 
112
- ### 5.0.4
128
+ ## 5.0.4
113
129
 
114
130
  * Don't include the `media` attribute on alternate links unless it's given
115
131
 
116
- ### 5.0.3
132
+ ## 5.0.3
117
133
 
118
134
  * Add support for Video sitemaps options `:live` and ':requires_subscription'
119
135
 
120
- ### 5.0.2
136
+ ## 5.0.2
121
137
 
122
138
  * Set maximum filesize to 10,000,000 bytes rather than 10,485,760 bytes.
123
139
 
124
- ### 5.0.1
140
+ ## 5.0.1
125
141
 
126
142
  * Include new `SitemapGenerator::FogAdapter` ([#138](https://github.com/kjvarga/sitemap_generator/pull/138)).
127
143
  * Fix usage of attr_* methods in `LinkSet`
@@ -129,30 +145,30 @@
129
145
  * Fix breaking spec in Ruby 2 ([#142](https://github.com/kjvarga/sitemap_generator/pull/142)).
130
146
  * Include Capistrano 3.x tasks ([#141](https://github.com/kjvarga/sitemap_generator/pull/141)).
131
147
 
132
- ### 5.0.0
148
+ ## 5.0.0
133
149
 
134
150
  * Support new `:compress` option for customizing which files get compressed.
135
151
  * Remove old deprecated methods:
136
- * Removed options to `LinkSet::add()`: `:sitemaps_namer` and `:sitemap_index_namer` (use `:namer` option)
137
- * Removed `LinkSet::sitemaps_namer=`, `LinkSet::sitemaps_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
138
- * Removed `LinkSet::sitemaps_index_namer=`, `LinkSet::sitemaps_index_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
139
- * Removed the `SitemapGenerator::SitemapNamer` class (use `SitemapGenerator::SimpleNamer`)
140
- * Removed `LinkSet::add_links()` (use `LinkSet::create()`)
152
+ * Removed options to `LinkSet::add()`: `:sitemaps_namer` and `:sitemap_index_namer` (use `:namer` option)
153
+ * Removed `LinkSet::sitemaps_namer=`, `LinkSet::sitemaps_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
154
+ * Removed `LinkSet::sitemaps_index_namer=`, `LinkSet::sitemaps_index_namer` (use `LinkSet::namer=` and `LinkSet::namer`)
155
+ * Removed the `SitemapGenerator::SitemapNamer` class (use `SitemapGenerator::SimpleNamer`)
156
+ * Removed `LinkSet::add_links()` (use `LinkSet::create()`)
141
157
  * Support `fog_path_style` option in the `SitemapGenerator::S3Adapter` so buckets with dots in the name work over HTTPS without SSL certificate problems.
142
158
 
143
- ### 4.3.1
159
+ ## 4.3.1
144
160
 
145
161
  * Support integer timestamps.
146
162
  * Update README for new features added in last release.
147
163
 
148
- ### 4.3.0
164
+ ## 4.3.0
149
165
 
150
166
  * Support `media` attibute on alternate links ([#125](https://github.com/kjvarga/sitemap_generator/issues/125)).
151
167
  * Changed `SitemapGenerator::S3Adapter` to write files in a single operation, avoiding potential permissions errors when listing a directory prior to writing ([#130](https://github.com/kjvarga/sitemap_generator/issues/130)).
152
168
  * Remove Sitemap Writer from ping task ([#129](https://github.com/kjvarga/sitemap_generator/issues/129)).
153
169
  * Support `url:expires` element ([#126](https://github.com/kjvarga/sitemap_generator/issues/126)).
154
170
 
155
- ### 4.2.0
171
+ ## 4.2.0
156
172
 
157
173
  * Update Google ping URL.
158
174
  * Quote the ping URL in the output.
@@ -160,23 +176,23 @@
160
176
  * Support symbols as well as strings for most arguments to `add()` ([#113](https://github.com/kjvarga/sitemap_generator/issues/113)).
161
177
  * Ensure that `public_path` and `sitemaps_path` end with a slash (`/`) ([#113](https://github.com/kjvarga/sitemap_generator/issues/118)).
162
178
 
163
- ### 4.1.1
179
+ ## 4.1.1
164
180
 
165
181
  * Support setting the S3 region.
166
182
  * Fixed bug where incorrect URL was being used in the ping to search engines - only affected sites with a single sitemap file and no index file.
167
183
  * Output the URL being pinged in the verbose output.
168
184
  * Test in Rails 4.
169
185
 
170
- ### 4.1.0
186
+ ## 4.1.0
171
187
 
172
188
  * [PageMap sitemap][using_pagemaps] support.
173
189
  * Tested with Rails 4 pre-release.
174
190
 
175
- ### 4.0.1
191
+ ## 4.0.1
176
192
 
177
193
  * Add a post install message regarding the naming convention change.
178
194
 
179
- ### 4.0
195
+ ## 4.0
180
196
 
181
197
  * **NEW, NON-BACKWARDS COMPATIBLE CHANGES.**
182
198
  * `create_index` defaults to `:auto`.
@@ -185,20 +201,20 @@
185
201
  * Support `nofollow` option on alternate links.
186
202
  * Fix formatting of `publication_date` in News sitemaps.
187
203
 
188
- ### 3.4
204
+ ## 3.4
189
205
 
190
206
  * Support [alternate links][alternate_links] for urls
191
207
  * Support configurable options in the `SitemapGenerator::S3Adapter`
192
208
 
193
- ### 3.3
209
+ ## 3.3
194
210
 
195
211
  * Support creating sitemaps with no index file
196
212
 
197
- ### 3.2.1
213
+ ## 3.2.1
198
214
 
199
215
  * Fix syntax error in `SitemapGenerator::S3Adapter`
200
216
 
201
- ### 3.2
217
+ ## 3.2
202
218
 
203
219
  * Support mobile tags
204
220
  * Add `SitemapGenerator::S3Adapter`, a simple S3 adapter which uses Fog and doesn't require CarrierWave
@@ -207,18 +223,18 @@
207
223
  * Fix the news XML namespace
208
224
  * Only include `autoplay` attribute if present
209
225
 
210
- ### 3.1.1
226
+ ## 3.1.1
211
227
 
212
228
  * Bugfix
213
229
  * Groups inherit current adapter
214
230
 
215
- ### 3.1.0
231
+ ## 3.1.0
216
232
 
217
233
  * Add `add_to_index` method to add links to the sitemap index.
218
- * Add `sitemap` method for accessing the `LinkSet instance from within `create()`.
234
+ * Add `sitemap` method for accessing the `LinkSet` instance from within `create()`.
219
235
  * Don't modify options hashes passed to methods. Fix and improve `yield_sitemap` option handling.
220
236
 
221
- ### 3.0.0
237
+ ## 3.0.0
222
238
 
223
239
  * **Framework agnostic!**
224
240
  * Fix alignment in output
@@ -228,61 +244,61 @@
228
244
  * Remove tasks/ directory because it's deprecated in Rails 2
229
245
  * Simplify dependencies.
230
246
 
231
- ### 2.2.1
247
+ ## 2.2.1
232
248
 
233
249
  * Support adding new search engines to ping and modifying the default search engines.
234
250
  * Allow the URL of the sitemap index to be passed as an argument to `ping_search_engines`. See Pinging Search Engines in README.
235
251
 
236
- ### 2.1.8
252
+ ## 2.1.8
237
253
 
238
254
  * Extend and improve Video Sitemap support.
239
255
  * Include sitemap docs in the README, support all element attributes, properly format values.
240
256
 
241
- ### 2.1.7
257
+ ## 2.1.7
242
258
 
243
259
  * Improve format of float priorities
244
260
  * Remove Yahoo from ping - the Yahoo service has been shut down.
245
261
 
246
- ### 2.1.6
262
+ ## 2.1.6
247
263
 
248
264
  * Fix the `lastmod` value on sitemap file links
249
265
 
250
- ### 2.1.5
266
+ ## 2.1.5
251
267
 
252
268
  * Fix verbose setting in the rake task, it should default to true
253
269
 
254
- ### 2.1.4
270
+ ## 2.1.4
255
271
 
256
272
  * Allow special characters in URLs (don't use `URI.join` to construct URLs)
257
273
 
258
- ### 2.1.3
274
+ ## 2.1.3
259
275
 
260
276
  * Fix calling `create` with both `filename` and `sitemaps_namer` options
261
277
 
262
- ### 2.1.2
278
+ ## 2.1.2
263
279
 
264
280
  * Support multiple videos per url using the new `videos` option to `add()`.
265
281
 
266
- ### 2.1.1
282
+ ## 2.1.1
267
283
 
268
284
  * Support calling `create()` multiple times in a sitemap config
269
285
  * Support host names with path segments so you can use a `default_host` like `'http://mysite.com/subdirectory/'`
270
286
  * Turn off `include_index` when the `sitemaps_host` differs from `default_host`
271
287
  * Add docs about how to upload to remote hosts.
272
288
 
273
- ### 2.1.0
289
+ ## 2.1.0
274
290
 
275
291
  * [News sitemap][sitemap_news] support
276
292
 
277
- ### 2.0.1.pre2
293
+ ## 2.0.1.pre2
278
294
 
279
295
  * Fix uploading to the (bucket) root on a remote server
280
296
 
281
- ### 2.0.1.pre1
297
+ ## 2.0.1.pre1
282
298
 
283
299
  * Support read-only filesystems like Heroku by supporting uploading to remote host
284
300
 
285
- ### 2.0.1
301
+ ## 2.0.1
286
302
 
287
303
  * Minor improvements to verbose handlig
288
304
  * Prevent missing `Timeout` issue
@@ -291,37 +307,36 @@
291
307
 
292
308
  * Introducing a new simpler API, Sitemap Groups, Sitemap Namers and more!
293
309
 
294
- ### 1.5.0
310
+ ## 1.5.0
295
311
 
296
312
  * New options `include_root`, `include_index`
297
313
  * Major testing & refactoring
298
314
 
299
- ### 1.4.0
315
+ ## 1.4.0
300
316
 
301
- * [Geo sitemap][geo_tags] support
317
+ * Geo sitemap support
302
318
  * Multiple sitemap support via CONFIG_FILE rake option
303
319
 
304
- ### 1.3.0
320
+ ## 1.3.0
305
321
 
306
322
  * Support setting the sitemaps path
307
323
 
308
- ### 1.2.0
324
+ ## 1.2.0
309
325
 
310
326
  * Verified working with Rails 3 stable release
311
327
 
312
- ### 1.1.0
328
+ ## 1.1.0
313
329
 
314
330
  * [Video sitemap][sitemap_video] support
315
331
 
316
- ### 0.2.6
332
+ ## 0.2.6
317
333
 
318
334
  * [Image Sitemap][sitemap_images] support
319
335
 
320
- ### 0.2.5
336
+ ## 0.2.5
321
337
 
322
338
  * Rails 3 prerelease support (beta)
323
339
 
324
- [geo_tags]:http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=94555
325
340
  [sitemap_images]:http://www.google.com/support/webmasters/bin/answer.py?answer=178636
326
341
  [sitemap_video]:https://support.google.com/webmasters/answer/80471?hl=en&ref_topic=4581190
327
342
  [sitemap_news]:https://support.google.com/news/publisher/topic/2527688?hl=en&ref_topic=4359874