Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.07 KB

CHANGELOG.md

File metadata and controls

39 lines (30 loc) · 1.07 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Removed

  • create (both as a named export and the default export) is removed. Instead use atom.

[1.0.0beta-12] - 2015-02-16

This version, compared to the previous one only adds deprecation notices that can be fixed by slight modifications. Underlying implementations are not changed.

Deprecated

  • create (both as a named export and the default export) is marked as deprecated, and it has been renamed to atom.

Before:

import create from 'xoid'
// or
import { create } from 'xoid'

After:

import { atom } from 'xoid'
  • inject and effect exports are now exported from the root. They used to be exported from the xoid/setup route.

Before:

import { effect, inject } from 'xoid/setup'

After:

import { effect, inject } from 'xoid'