Skip to content

Commit

Permalink
fix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian committed Jul 18, 2024
1 parent 1316368 commit 8224c88
Show file tree
Hide file tree
Showing 24 changed files with 59 additions and 56 deletions.
2 changes: 1 addition & 1 deletion ffi/capi/bindings/c/Collator.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ffi/capi/bindings/c/LocaleDisplayNamesFormatter.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/c/TitlecaseOptionsV1.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/cpp/Collator.d.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ffi/capi/bindings/cpp/Collator.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/cpp/LocaleDisplayNamesFormatter.d.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/bindings/cpp/LocaleDisplayNamesFormatter.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ffi/capi/bindings/cpp/TitlecaseOptionsV1.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions ffi/capi/bindings/dart/Collator.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/bindings/dart/LocaleDisplayNamesFormatter.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/bindings/dart/TitlecaseOptions.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/dart/lib.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ffi/capi/bindings/js/Collator.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/bindings/js/Collator.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/LocaleDisplayNamesFormatter.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/TitlecaseOptions.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/index.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/index.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/src/casemap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pub mod ffi {
impl TitlecaseOptionsV1 {
#[diplomat::rust_link(icu::casemap::titlecase::TitlecaseOptions::default, FnInStruct)]
#[diplomat::attr(supports = constructors, constructor)]
pub fn default_options() -> TitlecaseOptionsV1 {
// named default_options to avoid keyword clashes
#[diplomat::attr(any(cpp, js), rename = "default_options")]
pub fn default() -> TitlecaseOptionsV1 {
Self {
leading_adjustment: LeadingAdjustment::Auto,
trailing_case: TrailingCase::Lower,
Expand Down Expand Up @@ -92,7 +92,7 @@ pub mod ffi {
FnInStruct,
hidden
)]
#[diplomat::attr(any(dart, js), rename = "titlecaseSegmentWithOnlyCaseData")]
#[diplomat::attr(any(dart, js), rename = "titlecase_segment_with_only_case_data")]
pub fn titlecase_segment_with_only_case_data_v1(
&self,
s: &str,
Expand Down Expand Up @@ -279,7 +279,7 @@ pub mod ffi {
FnInStruct,
hidden
)]
#[diplomat::attr(any(dart, js), rename = "titlecaseSegment")]
#[diplomat::attr(any(dart, js), rename = "titlecase_segment")]
pub fn titlecase_segment_v1(
&self,
s: &str,
Expand Down
Loading

0 comments on commit 8224c88

Please sign in to comment.