Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Dec 24, 2021
1 parent 78c2ac6 commit bbcbaf0
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 293 deletions.
282 changes: 0 additions & 282 deletions CHANGELOG.md

This file was deleted.

4 changes: 4 additions & 0 deletions packages/anyone/CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.0.0 - 2021-12-24

- Use named exports

## 0.1.21 - 2021-07-02

### Fixed and improved
Expand Down
2 changes: 1 addition & 1 deletion packages/anyone/package.json
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"main": "./dist/cjs/anyone.js",
"types": "./types/anyone.d.ts",
"version": "1.0.0",
"version": "1.0.1",
"author": "ealush",
"scripts": {
"test": "vx test",
Expand Down
4 changes: 4 additions & 0 deletions packages/context/CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.0.0 2021-12-24

- 7c43eab major(context): use named export in context (ealush)

## 1.1.16 - 2021-07-02

### Fixed and improved
Expand Down
2 changes: 1 addition & 1 deletion packages/context/package.json
@@ -1,5 +1,5 @@
{
"version": "1.2.0",
"version": "2.0.0",
"license": "MIT",
"main": "./dist/cjs/context.js",
"types": "./types/context.d.ts",
Expand Down
17 changes: 17 additions & 0 deletions packages/n4s/CHANGELOG.md
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 4.0.0 2021-12-24

- 7daf6d2 rule(n4s): add isNullish rule, improve isBlank (ealush)
- ddceca7 patch(n4s): improve partial support (ealush)
- 0370fc1 n4s: extract non-required modules (ealush)
- 7baedf2 n4s: use named export in entry (ealush)
- 780c5b7 types(n4s): Allow adding types for custom matchers (ealush)
- 149aab3 add(n4s): enforce.condition (ealush)
- d786b34 fix(n4s): make sure oneOf correctly validates single case (ealush)
- 49e601a feat(n4s): enforce.compose (ealush)
- 1dddaf4 patch(n4s): improve types for rule chaining (undefined)
- b5ce72d feat(n4s): context propagation within enforce (undefined)
- 32fe8a5 feat(n4s): add shape and loose validations (undefined)
- 39b92f1 patch: enable enforce in es5 environments (undefined)
- 75306ff fix(n4s): make enforce compound runners fall back to correct response (ealush)
- 4751584 fix(n4s): make enforce chaining work (ealush)

## 3.1.0 - 2021-08-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/n4s/package.json
@@ -1,5 +1,5 @@
{
"version": "3.1.0",
"version": "4.0.0",
"license": "MIT",
"main": "./dist/cjs/n4s.js",
"types": "./types/n4s.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions packages/vast/CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.0.0 - 2021-12-24

- Use named exports

## 1.0.11 - 2021-07-02

### Fixed and improved
Expand Down
2 changes: 1 addition & 1 deletion packages/vast/package.json
@@ -1,5 +1,5 @@
{
"version": "1.0.3",
"version": "1.0.4",
"license": "MIT",
"main": "./dist/cjs/vast.js",
"types": "./types/vast.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/vest/package.json
@@ -1,5 +1,5 @@
{
"version": "3.3.0",
"version": "4.0.0",
"license": "MIT",
"name": "vest",
"author": "ealush",
Expand Down
7 changes: 3 additions & 4 deletions vx/commands/release.js
@@ -1,4 +1,4 @@
// const pushToLatestBranch = require('../scripts/release/steps/pushToLatestBranch');
const pushToLatestBranch = require('../scripts/release/steps/pushToLatestBranch');

const logger = require('vx/logger');
const packagesToRelease = require('vx/scripts/release/packagesToRelease');
Expand Down Expand Up @@ -31,9 +31,8 @@ async function releaseAll() {

if (!isReleaseBranch) {
logger.info(`❌ Not in release branch. Not pushing changes to git.`);
// return;
return;
}

// TODO: add this back after the major release. First I want to handle the changelog manually.
// pushToLatestBranch();
pushToLatestBranch();
}

0 comments on commit bbcbaf0

Please sign in to comment.