Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enforce semantic versioning #338

Closed
fnothaft opened this issue Jul 28, 2014 · 2 comments
Closed

Enforce semantic versioning #338

fnothaft opened this issue Jul 28, 2014 · 2 comments
Milestone

Comments

@fnothaft
Copy link
Member

We'd probably want to hold off on this until 1.0 or so, but Parquet uses the maven enforcer plugin to flag API breaking changes:

        <plugin>
          <artifactId>maven-enforcer-plugin</artifactId>
          <version>1.3.1</version>
          <dependencies>
            <dependency>
              <groupId>org.semver</groupId>
              <artifactId>enforcer-rule</artifactId>
              <version>0.9.23</version>
            </dependency>
         </dependencies>
         <executions>
           <execution>
             <id>check</id>
             <phase>verify</phase>
             <goals>
               <goal>enforce</goal>
             </goals>
             <configuration>
               <rules>
                 <requireBackwardCompatibility implementation="org.semver.enforcer.RequireSemanticVersioningConformance">
                   <dumpDetails>true</dumpDetails>
                   <previousVersion>${previous.version}</previousVersion>
                   <excludes>
                     <exclude>parquet/org/**</exclude>
                   </excludes>
                 </requireBackwardCompatibility>
               </rules>
             </configuration>
           </execution>
         </executions>
        </plugin>
@tdanford
Copy link
Contributor

+1

@heuermh
Copy link
Member

heuermh commented May 23, 2022

Semantic versioning is now in place as of release version 1.0.

@heuermh heuermh closed this as completed May 23, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants