|
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
|
@@ -5306,15 +5306,59 @@ class url_pattern {
|
5306 | 5306 | std::variant<std::string_view, url_pattern_init> input,
|
5307 | 5307 | const std::string_view* base_url, const url_pattern_options* options);
|
5308 | 5308 |
|
5309 |
| - private: |
| 5309 | + /** |
| 5310 | + * @private |
| 5311 | + * We can not make this private due to a LLVM bug. |
| 5312 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5313 | + */ |
5310 | 5314 | url_pattern_component<regex_provider> protocol_component{};
|
| 5315 | + /** |
| 5316 | + * @private |
| 5317 | + * We can not make this private due to a LLVM bug. |
| 5318 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5319 | + */ |
5311 | 5320 | url_pattern_component<regex_provider> username_component{};
|
| 5321 | + /** |
| 5322 | + * @private |
| 5323 | + * We can not make this private due to a LLVM bug. |
| 5324 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5325 | + */ |
5312 | 5326 | url_pattern_component<regex_provider> password_component{};
|
| 5327 | + /** |
| 5328 | + * @private |
| 5329 | + * We can not make this private due to a LLVM bug. |
| 5330 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5331 | + */ |
5313 | 5332 | url_pattern_component<regex_provider> hostname_component{};
|
| 5333 | + /** |
| 5334 | + * @private |
| 5335 | + * We can not make this private due to a LLVM bug. |
| 5336 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5337 | + */ |
5314 | 5338 | url_pattern_component<regex_provider> port_component{};
|
| 5339 | + /** |
| 5340 | + * @private |
| 5341 | + * We can not make this private due to a LLVM bug. |
| 5342 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5343 | + */ |
5315 | 5344 | url_pattern_component<regex_provider> pathname_component{};
|
| 5345 | + /** |
| 5346 | + * @private |
| 5347 | + * We can not make this private due to a LLVM bug. |
| 5348 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5349 | + */ |
5316 | 5350 | url_pattern_component<regex_provider> search_component{};
|
| 5351 | + /** |
| 5352 | + * @private |
| 5353 | + * We can not make this private due to a LLVM bug. |
| 5354 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5355 | + */ |
5317 | 5356 | url_pattern_component<regex_provider> hash_component{};
|
| 5357 | + /** |
| 5358 | + * @private |
| 5359 | + * We can not make this private due to a LLVM bug. |
| 5360 | + * Ref: https://github.com/ada-url/ada/pull/859 |
| 5361 | + */ |
5318 | 5362 | bool ignore_case_ = false;
|
5319 | 5363 | };
|
5320 | 5364 |
|
@@ -10261,14 +10305,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
|
10261 | 10305 | #ifndef ADA_ADA_VERSION_H
|
10262 | 10306 | #define ADA_ADA_VERSION_H
|
10263 | 10307 |
|
10264 |
| -#define ADA_VERSION "3.0.0" |
| 10308 | +#define ADA_VERSION "3.0.1" |
10265 | 10309 |
|
10266 | 10310 | namespace ada {
|
10267 | 10311 |
|
10268 | 10312 | enum {
|
10269 | 10313 | ADA_VERSION_MAJOR = 3,
|
10270 | 10314 | ADA_VERSION_MINOR = 0,
|
10271 |
| - ADA_VERSION_REVISION = 0, |
| 10315 | + ADA_VERSION_REVISION = 1, |
10272 | 10316 | };
|
10273 | 10317 |
|
10274 | 10318 | } // namespace ada
|
|
0 commit comments