From 625dc4bf442b91c0894d811ede0a4754cd24a434 Mon Sep 17 00:00:00 2001 From: Emil Sjolander Date: Sat, 28 Jan 2017 11:06:17 -0800 Subject: [PATCH] Version bump Summary: Bump version and publish to npm + cocoapods Reviewed By: dshahidehpour Differential Revision: D4479027 fbshipit-source-id: 42aa81de1a5a07e3a2814670ad1cf3774519b353 --- README.md | 2 +- Yoga.podspec | 4 ++-- YogaKit/YogaKit.podspec | 10 +++++----- javascript/package.json | 8 +++++++- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e06c7883..75dfcc20 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Yoga [![Build Status](https://travis-ci.org/facebook/yoga.svg?branch=master)](https://travis-ci.org/facebook/yoga) [![Cocoapods](https://img.shields.io/cocoapods/v/Yoga.svg)](http://cocoapods.org/pods/Yoga) +# Yoga [![Build Status](https://travis-ci.org/facebook/yoga.svg?branch=master)](https://travis-ci.org/facebook/yoga) [![Cocoapods](https://img.shields.io/cocoapods/v/Yoga.svg)](http://cocoapods.org/pods/Yoga)[![Cocoapods](https://img.shields.io/cocoapods/v/YogaKit.svg)](http://cocoapods.org/pods/YogaKit)[![npm](https://img.shields.io/npm/v/yoga-layout.svg)](https://www.npmjs.com/package/yoga-layout) ## Building Yoga builds with [buck](https://buckbuild.com). Make sure you install buck before contributing to Yoga. Yoga's main implementation is in C, with bindings to supported languages and frameworks. When making changes to Yoga please ensure the changes are also propagated to these bindings when applicable. diff --git a/Yoga.podspec b/Yoga.podspec index c3139ede..ca4f4148 100644 --- a/Yoga.podspec +++ b/Yoga.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Yoga' - s.version = '1.0.0' + s.version = '1.0.1' s.summary = 'A cross-platform layout engine.' s.homepage = 'https://github.com/facebook/yoga' s.documentation_url = 'https://facebook.github.io/yoga' @@ -11,7 +11,7 @@ Pod::Spec.new do |s| s.social_media_url = 'https://twitter.com/fbOpenSource' s.source = { :git => 'https://github.com/facebook/yoga.git', - :tag => 'v2017.01.23.00', + :tag => 'v2017.01.27.00', } s.module_name = 'yoga' s.requires_arc = false diff --git a/YogaKit/YogaKit.podspec b/YogaKit/YogaKit.podspec index a2478d84..7a2eef32 100644 --- a/YogaKit/YogaKit.podspec +++ b/YogaKit/YogaKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'YogaKit' - spec.version = '1.0.0' + spec.version = '1.0.1' spec.license = { :type => 'BSD-3-Clause', :file => '../LICENSE' } spec.homepage = 'https://facebook.github.io/yoga' spec.authors = { @@ -18,13 +18,13 @@ Pod::Spec.new do |spec| spec.documentation_url = 'https://facebook.github.io/yoga/docs/getting-started/' spec.source = { :git => 'https://github.com/facebook/yoga.git', - :tag => 'v2017.01.23.00' + :tag => 'v2017.01.27.00' } spec.platform = :ios spec.dependency 'Yoga', '~> 1.0' - spec.source_files = 'Source/*.{h,m}', - spec.public_header_files = 'Source/{YGLayout,UIView+Yoga}.h' - spec.private_header_files = 'Source/YGLayout+Private.h' + spec.source_files = 'YogaKit/Source/*.{h,m}', + spec.public_header_files = 'YogaKit/Source/{YGLayout,UIView+Yoga}.h' + spec.private_header_files = 'YogaKit/Source/YGLayout+Private.h' end diff --git a/javascript/package.json b/javascript/package.json index 0ef65406..08def8d5 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,12 @@ { "name": "yoga-layout", - "version": "1.0.0", + "version": "1.0.1", + "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.", + "license": "BSD-3-Clause", + "repository": { + "type": "git", + "url": "git@github.com:facebook/yoga.git" + }, "main": "./sources/entry-node", "browser": "./sources/entry-browser",