Skip to content

Commit bf2b458

Browse files
authored
Merge pull request #495 from openmobilityfoundation/release-0.4.1
Release 0.4.1 is approved and merged to master.
2 parents 26fed01 + 38032e2 commit bf2b458

36 files changed

+1979
-549
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Default
3+
about: Suggest changes to MDS
4+
title: <Insert Title>
5+
6+
---
7+
8+
# MDS Pull Request
9+
10+
Thank you for your contribution!
11+
12+
*For most Pull Requests, the target branch should be [**`dev`**](https://github.com/openmobilityfoundation/mobility-data-specification/tree/dev). Please ensure you are targeting **`dev`** to avoid complications and help make the Review process as smooth as possible.*
13+
14+
## Explain pull request
15+
16+
Please provide a clear and concise reason for this pull request and the impact of the change
17+
18+
## Is this a breaking change
19+
20+
A breaking change would require consumers or implementors of the API to modify their code for it to continue to function (ex: renaming of a required field or the change in data type of an existing field). A non-breaking change would allow existing code to continue to function (ex: addition of an optional field or the creation of a new optional endpoint).
21+
22+
* Yes, breaking
23+
* No, not breaking
24+
* I'm not sure
25+
26+
## Impacted Spec
27+
28+
Which spec(s) will this pull request impact?
29+
30+
* `agency`
31+
* `policy`
32+
* `provider`
33+
34+
## Additional context
35+
36+
Add any other context or screenshots about the feature request here.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Release Candidate
3+
about: Initiate discussion to obtain OMF approval for new release
4+
title: Release Candidate [X.Y.Z]
5+
labels: admin
6+
assignees: jfh01
7+
8+
---
9+
10+
### Summary
11+
12+
The Release Candidate for MDS `X.Y.Z` has been submitted: <https://github.com/openmobilityfoundation/mobility-data-specification/releases/tag/X.Y.Z-rc>
13+
14+
Please use this pull request to track Technology Council and OMF Board feedback and/or requested changes.
15+
16+
### Action Item
17+
18+
This pull request will be merged by an OMF maintainer after OMF Board Approval following the [Release Guidelines](https://github.com/openmobilityfoundation/mobility-data-specification/blob/master/ReleaseGuidelines.md#making-a-release).
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Release Final
3+
about: Finalize and publish an OMF approved release
4+
title: Release [X.Y.Z]
5+
labels: admin
6+
assignees: jfh01
7+
8+
---
9+
10+
### Summary
11+
12+
The Release Candidate for MDS `X.Y.Z` has been approved: <https://github.com/openmobilityfoundation/mobility-data-specification/releases/tag/X.Y.Z-rc>
13+
14+
This pull request will make the release official in `master`.
15+
16+
### Action Item
17+
18+
Merge this pull request following the [Release Guidelines](https://github.com/openmobilityfoundation/mobility-data-specification/blob/master/ReleaseGuidelines.md#making-a-release).

.github/pull_request_template.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

CODEOWNERS

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
## Below is the MDS CODEOWNERS file, which dictates who is required for review on any given file.
1+
## Below is the MDS CODEOWNERS file, which dictates who is required for review on any given file.
22

3-
## All MDS approvals
4-
* @hunterowens @thekaveman @jfh01
3+
## All MDS approvals
4+
* @openmobilityfoundation/omf-admin
55

6+
## Provider Services Working Group
7+
/provider/* @openmobilityfoundation/provider-maintainers @openmobilityfoundation/omf-admin
68

7-
## City Services Working Group Specific, also JSON Schema
8-
/agency/* @hunterowens @thekaveman @jfh01 @henrij
9-
/schema/* @hunterowens @thekaveman @jfh01 @henrij
9+
## City Services Working Group Specific, also JSON Schema
10+
/agency/* @openmobilityfoundation/city-services-maintainers @openmobilityfoundation/omf-admin
11+
/policy/* @openmobilityfoundation/city-services-maintainers @openmobilityfoundation/omf-admin
1012

13+
## schema is changed by provider and city services working group
14+
/schema/* @openmobilityfoundation/provider-maintainers @openmobilityfoundation/city-services-maintainers @openmobilityfoundation/omf-admin

CODE_OF_CONDUCT.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Code of Conduct
2+
3+
To encourage participation by any and all interested people, we aim to create an open and welcoming environment for contributors. We pledge to make participation in this project a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
4+
5+
**Examples of behavior that contributes to creating a positive environment include:**
6+
7+
* Using welcoming and inclusive language
8+
* Being respectful of differing viewpoints and experiences
9+
* Gracefully accepting constructive criticism
10+
* Focusing on what is best for the community
11+
* Showing empathy towards other community members
12+
13+
Please review the [OMF's Participation Policies](https://members.openmobilityfoundation.org/wp-content/uploads/2019/06/OMFParticipationPolicies.pdf) for more details.

CONTRIBUTING.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# MDS Contributor Guidelines
2+
23
MDS is an evolving specification with a regular release cycle. Please review the [MDS Release Guidelines](ReleaseGuidelines.md) to understand the release process.
34

45
## Who can contribute
6+
57
MDS is an open specification and anyone can contribute to its development. Because MDS supports a growing ecosystem of mobility services, policies, and tools, there are some key stakeholders whose participation is particularly encouraged:
68

79
* **Public agencies:** As licensing authority and regulator, public agencies are the ultimate customers for MDS and the data flowing through it. The public agency role is to ensure that MDS effectively supports program management and offers a flexible foundation for policy implementation. Public agencies of all levels of technical capacity are encourage to participate in the evolution of MDS, whether by submitting pull requests and issues, or simply by providing feedback during release cycles.
@@ -11,20 +13,19 @@ MDS is an open specification and anyone can contribute to its development. Becau
1113
* **Public agency software partners:** Serve as a key bridge between public agencies and mobility service providers by offering tools that turn MDS data into useful insights. The public agency software partners help ensure that MDS will enable real-world product development, reflects the needs of their public agency customers, and encourages private investment in the MDS ecosystem.
1214

1315
## How to contribute
16+
1417
Contributions should be offered through GitHub issues and pull requests. Please review the [MDS Release Guidelines](ReleaseGuidelines.md) for details on the release process, schedule, and communications channels.
1518

1619
In general, you may open an issue or make a pull request at any time. Once the issue or pull request is associated with a particular Milestone, it will be included for review within the process for that release.
1720

21+
All contributors must agree to the Open Mobility Foundation's [Individual Contributor License Agreement](http://members.openmobilityfoundation.org/wp-content/uploads/2019/06/Individual-CLA.pdf) (ICLA) and [Participation Policies](https://members.openmobilityfoundation.org/wp-content/uploads/2019/06/OMFParticipationPolicies.pdf). Pull requests will not be merged without a signed ICLA. If a contributor is working on behalf of a company or other organization, that organization must also agree to the [Entity Contributor License Agreement](https://members.openmobilityfoundation.org/wp-content/uploads/2019/06/Entity-CLA.pdf) (ECLA). These agreements clarify the intellectual property status of work that is contributed to OMF projects. They apply to all contributions, including source code, documentation, and comments.
22+
1823
## What belongs in MDS
24+
1925
MDS is a tool to facilitate data exchange between mobility service providers, public agencies, and public agency software partners. Although providers are often required to support MDS as part of mobility permits or policies, MDS is intended as a neutral mechanism for information exchange. It is not intended to force or foreclose any specific policy options that a public agency may choose to pursue.
2026

21-
## Code of Conduct
22-
To encourage participation by any and all interested people, we aim to create an open and welcoming environment for contributors. We pledge to make participation in this project a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
27+
MDS is built as an interface between local governments and mobility service providers. Access to MDS APIs should be restricted, and is not intended to directly support public consumption or consumer-facing applications.
2328

24-
**Examples of behavior that contributes to creating a positive environment include:**
29+
## Participation Policies and Code of Conduct
2530

26-
* Using welcoming and inclusive language
27-
* Being respectful of differing viewpoints and experiences
28-
* Gracefully accepting constructive criticism
29-
* Focusing on what is best for the community
30-
* Showing empathy towards other community members
31+
See our [CODE OF CONDUCT page](CODE_OF_CONDUCT.md).

0 commit comments

Comments
 (0)