What is Semantic Versioning?
A version numbering system using MAJOR.MINOR.PATCH that communicates what type of changes were made.
Why It Matters
Semantic versioning tells you whether updating a dependency will break your code or just add features and fixes.
Real-World Example
Version 2.3.1 means major version 2, minor version 3, patch 1. Bumping to 3.0.0 signals breaking changes.
“Understanding terms like Semantic Versioning matters because it helps you have better conversations with developers and make smarter decisions about your software. You do not need to be technical. You just need to know enough to ask the right questions.”
Learn More at buildDay Melbourne
Want to understand these concepts hands-on? Join our one-day workshop and build a real web application from scratch.
Related Terms
npm
The default package manager for JavaScript, with millions of free packages available
Dependency
External code that your project needs to function
Package
A bundle of code that can be easily shared and reused across projects
Full-stack
Working on both the frontend (what users see) and backend (the server and database) of an application
TypeScript
JavaScript with added type checking that catches errors before your code runs
JavaScript
The programming language that makes websites interactive and dynamic