diff --git a/README.md b/README.md index 27910d1b..b904f05c 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,20 @@ -# semantic-release-scripts -[![Build Status](https://travis-ci.org/semantic-release/scripts.svg?branch=master)](https://travis-ci.org/semantic-release/scripts) -[![Coverage Status](https://coveralls.io/repos/semantic-release/scripts/badge.svg)](https://coveralls.io/r/semantic-release/scripts) -[![Dependency Status](https://david-dm.org/semantic-release/scripts.svg)](https://david-dm.org/semantic-release/scripts) -[![devDependency Status](https://david-dm.org/semantic-release/scripts/dev-status.svg)](https://david-dm.org/semantic-release/scripts#info=devDependencies) +# semantic-release +[![Build Status](https://travis-ci.org/semantic-release/semantic-release.svg?branch=next)](https://travis-ci.org/semantic-release/semantic-release) +[![Coverage Status](https://coveralls.io/repos/semantic-release/semantic-release/badge.svg?branch=next&service=github)](https://coveralls.io/github/semantic-release/semantic-release?branch=next) +[![Dependency Status](https://david-dm.org/semantic-release/semantic-release/next.svg)](https://david-dm.org/semantic-release/semantic-release/next) +[![devDependency Status](https://david-dm.org/semantic-release/semantic-release/next/dev-status.svg)](https://david-dm.org/semantic-release/semantic-release/next#info=devDependencies) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) -[![NPM](https://nodei.co/npm/semantic-release-scripts.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/semantic-release-scripts/) +[![NPM](https://nodei.co/npm/semantic-release.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/semantic-release/) + +## What is `semantic-release` about? + +At its core `semantic-release` is a set of conventions that gives you entirely automated, semver-compliant package publishing. _Coincidentally_ these conventions make sense on their own, like having meaningful commit messages. + +[![JSConfBP Talk](https://cloud.githubusercontent.com/assets/908178/8032541/e9bf6300-0dd6-11e5-92c9-8a39211368af.png)](https://www.youtube.com/watch?v=tc2UgG5L7WM&index=6&list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm) + +> This talk gives you a complete introduction to the underlying concepts + +The next branch is a completely rewritten version of `semantic-release`, that isn't fully tested and documented yet. +It has lots and lots of great new features, but also breaks a lot of things. +Unless you're adventurous you should look at the [stable master branch](https://github.com/semantic-release/semantic-release/tree/master). diff --git a/package.json b/package.json index 7e7ca3ae..724c9449 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { - "name": "semantic-release-scripts", + "name": "semantic-release", "description": "automated semver compliant package publishing", "author": "Stephan Bönnemann (http://boennemann.me)", "bin": { - "semantic-release-scripts": "./bin/semantic-release.js" + "semantic-release": "./bin/semantic-release.js" }, "bugs": { - "url": "https://github.com/semantic-release/scripts/issues" + "url": "https://github.com/semantic-release/semantic-release/issues" }, "bundleDependencies": [ "@semantic-release/commit-analyzer", @@ -52,7 +52,7 @@ "standard": "^4.2.1", "tap": "^1.3.1" }, - "homepage": "https://github.com/semantic-release/scripts#readme", + "homepage": "https://github.com/semantic-release/semantic-release/tree/next#readme", "keywords": [ "author", "automation", @@ -65,15 +65,22 @@ "version" ], "license": "MIT", - "main": "src/index.js", + "main": "dist/index.js", + "publishConfig": { + "tag": "next" + }, + "release": { + "branch": "next" + }, "repository": { "type": "git", - "url": "git+https://github.com/semantic-release/scripts.git" + "url": "git+https://github.com/semantic-release/semantic-release.git" }, "scripts": { "build": "rimraf dist && mkdirp dist && babel src --out-dir dist", "coverage": "nyc report", "coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info", + "prepublish": "npm run build", "pretest:integration": "npm run build && npm run test:build", "pretest:unit": "npm run build && npm run test:build", "semantic-release": "./bin/semantic-release.js pre && npm dedupe && npm publish && ./bin/semantic-release.js post",