Skip to content

Commit e4869b8

Browse files
committed
defect: Fix package name in .proto files
1 parent fa8586e commit e4869b8

43 files changed

Lines changed: 176 additions & 161 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ Date format: `YYYY-MM-DD`
1919

2020
---
2121

22+
## [1.57.2] - 2025-12-29
23+
24+
### Added
25+
### Changed
26+
- **defect:** Fix incorrect package names in .proto files.
27+
28+
### Deprecated
29+
### Removed
30+
### Fixed
31+
### Security
32+
33+
---
34+
2235
## [1.57.1] - 2025-12-29
2336

2437
### Added
@@ -30,6 +43,7 @@ Date format: `YYYY-MM-DD`
3043
### Fixed
3144
### Security
3245

46+
package sixafter.types.proto.v1;
3347
---
3448

3549
## [1.57.0] - 2025-12-29
@@ -461,7 +475,8 @@ Date format: `YYYY-MM-DD`
461475
### Fixed
462476
### Security
463477

464-
[Unreleased]: https://github.com/sixafter/types/compare/v1.57.1...HEAD
478+
[Unreleased]: https://github.com/sixafter/types/compare/v1.57.2...HEAD
479+
[1.57.1]: https://github.com/sixafter/types/compare/v1.57.1...v1.57.2
465480
[1.57.1]: https://github.com/sixafter/types/compare/v1.57.0...v1.57.1
466481
[1.57.0]: https://github.com/sixafter/types/compare/v1.56.0...v1.57.0
467482
[1.56.0]: https://github.com/sixafter/types/compare/v1.55.0...v1.56.0

proto/v1/compass_heading.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
import "google/protobuf/timestamp.proto";
2323

proto/v1/country.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
option cc_enable_arenas = true;
2323
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/country_subdivision.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
import "proto/v1/country.proto";
2323

proto/v1/email_address.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
option cc_enable_arenas = true;
2323
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/entity_metadata.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
import "google/protobuf/struct.proto";
2323
import "google/protobuf/timestamp.proto";

proto/v1/geofence.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
import "proto/v1/map_polygon.proto";
2323

proto/v1/geographic_region.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
option cc_enable_arenas = true;
2323
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/geometry.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
option cc_enable_arenas = true;
2323
option csharp_namespace = "SixAfter.Types.V1.WellKnownTypes";

proto/v1/geospatial_coordinate.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
syntax = "proto3";
1919

20-
package proto.v1;
20+
package sixafter.types.proto.v1;
2121

2222
import "proto/v1/geospatial_elevation.proto";
2323

0 commit comments

Comments
 (0)