abargnesi
abargnesi

Reputation: 341

Version number changes when restructuring software

We are open-sourcing a java software system that was previously proprietary. We loosely followed semantic versioning, by Tom Preston-Werner, where:

The task of open-source the system required us to rename packages. We also felt we should consolidate much of the modules that existed previously.

The restructuring tasks do not alter the Public APIs, but does change the dependencies for API users.

Where does restructuring/package renaming fit in to semantic versioning? How is a restructuring like this handled in well-know open source projects?

Upvotes: 1

Views: 115

Answers (1)

Fred Foo
Fred Foo

Reputation: 363807

If client code has to be changed to work with a new version, that's an incompatible API change.

Upvotes: 1

Related Questions