|
1 |
| -/* auto-generated on 2025-01-30 14:25:38 -0500. Do not edit! */ |
| 1 | +/* auto-generated on 2025-01-30 18:48:55 -0500. Do not edit! */ |
2 | 2 | /* begin file include/ada.h */
|
3 | 3 | /**
|
4 | 4 | * @file ada.h
|
@@ -5319,15 +5319,59 @@ class url_pattern {
|
5319 | 5319 | std::variant<std::string_view, url_pattern_init> input,
|
5320 | 5320 | const std::string_view* base_url, const url_pattern_options* options);
|
5321 | 5321 |
|
5322 |
| - private: |
| 5322 | + /** |
| 5323 | + * @private |
| 5324 | + * We can not make this private due to a LLVM bug. |
| 5325 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5326 | + */ |
5323 | 5327 | url_pattern_component<regex_provider> protocol_component{};
|
| 5328 | + /** |
| 5329 | + * @private |
| 5330 | + * We can not make this private due to a LLVM bug. |
| 5331 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5332 | + */ |
5324 | 5333 | url_pattern_component<regex_provider> username_component{};
|
| 5334 | + /** |
| 5335 | + * @private |
| 5336 | + * We can not make this private due to a LLVM bug. |
| 5337 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5338 | + */ |
5325 | 5339 | url_pattern_component<regex_provider> password_component{};
|
| 5340 | + /** |
| 5341 | + * @private |
| 5342 | + * We can not make this private due to a LLVM bug. |
| 5343 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5344 | + */ |
5326 | 5345 | url_pattern_component<regex_provider> hostname_component{};
|
| 5346 | + /** |
| 5347 | + * @private |
| 5348 | + * We can not make this private due to a LLVM bug. |
| 5349 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5350 | + */ |
5327 | 5351 | url_pattern_component<regex_provider> port_component{};
|
| 5352 | + /** |
| 5353 | + * @private |
| 5354 | + * We can not make this private due to a LLVM bug. |
| 5355 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5356 | + */ |
5328 | 5357 | url_pattern_component<regex_provider> pathname_component{};
|
| 5358 | + /** |
| 5359 | + * @private |
| 5360 | + * We can not make this private due to a LLVM bug. |
| 5361 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5362 | + */ |
5329 | 5363 | url_pattern_component<regex_provider> search_component{};
|
| 5364 | + /** |
| 5365 | + * @private |
| 5366 | + * We can not make this private due to a LLVM bug. |
| 5367 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5368 | + */ |
5330 | 5369 | url_pattern_component<regex_provider> hash_component{};
|
| 5370 | + /** |
| 5371 | + * @private |
| 5372 | + * We can not make this private due to a LLVM bug. |
| 5373 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5374 | + */ |
5331 | 5375 | bool ignore_case_ = false;
|
5332 | 5376 | };
|
5333 | 5377 |
|
@@ -10286,14 +10330,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
|
10286 | 10330 | #ifndef ADA_ADA_VERSION_H
|
10287 | 10331 | #define ADA_ADA_VERSION_H
|
10288 | 10332 |
|
10289 |
| -#define ADA_VERSION "3.0.0" |
| 10333 | +#define ADA_VERSION "3.0.1" |
10290 | 10334 |
|
10291 | 10335 | namespace ada {
|
10292 | 10336 |
|
10293 | 10337 | enum {
|
10294 | 10338 | ADA_VERSION_MAJOR = 3,
|
10295 | 10339 | ADA_VERSION_MINOR = 0,
|
10296 |
| - ADA_VERSION_REVISION = 0, |
| 10340 | + ADA_VERSION_REVISION = 1, |
10297 | 10341 | };
|
10298 | 10342 |
|
10299 | 10343 | } // namespace ada
|
|
0 commit comments